Smarthome Functionen
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

.gitignore 1.9KB

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