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