# Bluetooth Audio This repos supports incomming bt audio connections. It also sends the bt audio state via MQTT to smarthome.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

.gitignore 1.9KB

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