Module to run and control leyk lightning
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

.gitignore 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. config.py
  2. # ---> Python
  3. # Byte-compiled / optimized / DLL files
  4. __pycache__/
  5. *.py[cod]
  6. *$py.class
  7. # C extensions
  8. *.so
  9. # Distribution / packaging
  10. .Python
  11. build/
  12. develop-eggs/
  13. dist/
  14. downloads/
  15. eggs/
  16. .eggs/
  17. lib/
  18. lib64/
  19. parts/
  20. sdist/
  21. var/
  22. wheels/
  23. *.egg-info/
  24. .installed.cfg
  25. *.egg
  26. MANIFEST
  27. # PyInstaller
  28. # Usually these files are written by a python script from a template
  29. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  30. *.manifest
  31. *.spec
  32. # Installer logs
  33. pip-log.txt
  34. pip-delete-this-directory.txt
  35. # Unit test / coverage reports
  36. htmlcov/
  37. .tox/
  38. .nox/
  39. .coverage
  40. .coverage.*
  41. .cache
  42. nosetests.xml
  43. coverage.xml
  44. *.cover
  45. .hypothesis/
  46. .pytest_cache/
  47. # Translations
  48. *.mo
  49. *.pot
  50. # Django stuff:
  51. *.log
  52. local_settings.py
  53. db.sqlite3
  54. # Flask stuff:
  55. instance/
  56. .webassets-cache
  57. # Scrapy stuff:
  58. .scrapy
  59. # Sphinx documentation
  60. docs/_build/
  61. # PyBuilder
  62. target/
  63. # Jupyter Notebook
  64. .ipynb_checkpoints
  65. # IPython
  66. profile_default/
  67. ipython_config.py
  68. # pyenv
  69. .python-version
  70. # celery beat schedule file
  71. celerybeat-schedule
  72. # SageMath parsed files
  73. *.sage.py
  74. # Environments
  75. .env
  76. .venv
  77. env/
  78. venv/
  79. ENV/
  80. env.bak/
  81. venv.bak/
  82. # Spyder project settings
  83. .spyderproject
  84. .spyproject
  85. # Rope project settings
  86. .ropeproject
  87. # mkdocs documentation
  88. /site
  89. # mypy
  90. .mypy_cache/
  91. .dmypy.json
  92. dmypy.json
  93. # Pyre type checker
  94. .pyre/
  95. # ---> VirtualEnv
  96. # Virtualenv
  97. # http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
  98. .Python
  99. [Bb]in
  100. [Ii]nclude
  101. [Ll]ib
  102. [Ll]ib64
  103. [Ll]ocal
  104. [Ss]cripts
  105. pyvenv.cfg
  106. .venv
  107. pip-selfcheck.json
  108. # ---> Backup
  109. *.bak
  110. *.gho
  111. *.ori
  112. *.orig
  113. *.tmp
  114. # ---> Linux
  115. *~
  116. # temporary files which can be created if a process still has a handle open of a deleted file
  117. .fuse_hidden*
  118. # KDE directory preferences
  119. .directory
  120. # Linux trash folder which might appear on any partition or disk
  121. .Trash-*
  122. # .nfs files are created when an open file is removed but is still being accessed
  123. .nfs*