.gitignore 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. # Created by https://www.gitignore.io/api/python,pycharm+all
  2. # Edit at https://www.gitignore.io/?templates=python,pycharm+all
  3. ### PyCharm+all ###
  4. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
  5. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  6. # User-specific stuff
  7. .idea/**/workspace.xml
  8. .idea/**/tasks.xml
  9. .idea/**/usage.statistics.xml
  10. .idea/**/dictionaries
  11. .idea/**/shelf
  12. # Generated files
  13. .idea/**/contentModel.xml
  14. # Sensitive or high-churn files
  15. .idea/**/dataSources/
  16. .idea/**/dataSources.ids
  17. .idea/**/dataSources.local.xml
  18. .idea/**/sqlDataSources.xml
  19. .idea/**/dynamic.xml
  20. .idea/**/uiDesigner.xml
  21. .idea/**/dbnavigator.xml
  22. # Gradle
  23. .idea/**/gradle.xml
  24. .idea/**/libraries
  25. # Gradle and Maven with auto-import
  26. # When using Gradle or Maven with auto-import, you should exclude module files,
  27. # since they will be recreated, and may cause churn. Uncomment if using
  28. # auto-import.
  29. # .idea/modules.xml
  30. # .idea/*.iml
  31. # .idea/modules
  32. # CMake
  33. cmake-build-*/
  34. # Mongo Explorer plugin
  35. .idea/**/mongoSettings.xml
  36. # File-based project format
  37. *.iws
  38. # IntelliJ
  39. out/
  40. # mpeltonen/sbt-idea plugin
  41. .idea_modules/
  42. # JIRA plugin
  43. atlassian-ide-plugin.xml
  44. # Cursive Clojure plugin
  45. .idea/replstate.xml
  46. # Crashlytics plugin (for Android Studio and IntelliJ)
  47. com_crashlytics_export_strings.xml
  48. crashlytics.properties
  49. crashlytics-build.properties
  50. fabric.properties
  51. # Editor-based Rest Client
  52. .idea/httpRequests
  53. # Android studio 3.1+ serialized cache file
  54. .idea/caches/build_file_checksums.ser
  55. ### PyCharm+all Patch ###
  56. # Ignores the whole .idea folder and all .iml files
  57. # See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
  58. .idea/
  59. # Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
  60. *.iml
  61. modules.xml
  62. .idea/misc.xml
  63. *.ipr
  64. ### Python ###
  65. # Byte-compiled / optimized / DLL files
  66. __pycache__/
  67. *.py[cod]
  68. *$py.class
  69. # C extensions
  70. *.so
  71. # Distribution / packaging
  72. .Python
  73. build/
  74. develop-eggs/
  75. # dist/
  76. downloads/
  77. eggs/
  78. .eggs/
  79. lib/
  80. lib64/
  81. parts/
  82. sdist/
  83. var/
  84. wheels/
  85. *.egg-info/
  86. .installed.cfg
  87. *.egg
  88. MANIFEST
  89. # PyInstaller
  90. # Usually these files are written by a python script from a template
  91. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  92. *.manifest
  93. *.spec
  94. # Installer logs
  95. pip-log.txt
  96. pip-delete-this-directory.txt
  97. # Unit test / coverage reports
  98. htmlcov/
  99. .tox/
  100. .nox/
  101. .coverage
  102. .coverage.*
  103. .cache
  104. nosetests.xml
  105. coverage.xml
  106. *.cover
  107. .hypothesis/
  108. .pytest_cache/
  109. # Translations
  110. *.mo
  111. *.pot
  112. # Django stuff:
  113. *.log
  114. local_settings.py
  115. db.sqlite3
  116. # Flask stuff:
  117. instance/
  118. .webassets-cache
  119. # Scrapy stuff:
  120. .scrapy
  121. # Sphinx documentation
  122. docs/_build/
  123. # PyBuilder
  124. target/
  125. # Jupyter Notebook
  126. .ipynb_checkpoints
  127. # IPython
  128. profile_default/
  129. ipython_config.py
  130. # pyenv
  131. .python-version
  132. # celery beat schedule file
  133. celerybeat-schedule
  134. # SageMath parsed files
  135. *.sage.py
  136. # Environments
  137. .env
  138. .venv
  139. env/
  140. venv/
  141. ENV/
  142. env.bak/
  143. venv.bak/
  144. # Spyder project settings
  145. .spyderproject
  146. .spyproject
  147. # Rope project settings
  148. .ropeproject
  149. # mkdocs documentation
  150. /site
  151. # mypy
  152. .mypy_cache/
  153. .dmypy.json
  154. dmypy.json
  155. # Pyre type checker
  156. .pyre/
  157. ### Python Patch ###
  158. .venv/
  159. ### Python.VirtualEnv Stack ###
  160. # Virtualenv
  161. # http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
  162. [Bb]in
  163. [Ii]nclude
  164. [Ll]ib
  165. [Ll]ib64
  166. [Ll]ocal
  167. [Ss]cripts
  168. pyvenv.cfg
  169. pip-selfcheck.json
  170. # End of https://www.gitignore.io/api/python,pycharm+all