.gitignore 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. # Created by https://www.toptal.com/developers/gitignore/api/python,flask
  2. # Edit at https://www.toptal.com/developers/gitignore?templates=python,flask
  3. ### Flask ###
  4. instance/*
  5. !instance/.gitignore
  6. .webassets-cache
  7. .env
  8. ### Flask.Python Stack ###
  9. # Byte-compiled / optimized / DLL files
  10. __pycache__/
  11. *.py[cod]
  12. *$py.class
  13. # C extensions
  14. *.so
  15. # Distribution / packaging
  16. .Python
  17. build/
  18. develop-eggs/
  19. dist/
  20. downloads/
  21. eggs/
  22. .eggs/
  23. lib/
  24. lib64/
  25. parts/
  26. sdist/
  27. var/
  28. wheels/
  29. share/python-wheels/
  30. *.egg-info/
  31. .installed.cfg
  32. *.egg
  33. MANIFEST
  34. # PyInstaller
  35. # Usually these files are written by a python script from a template
  36. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  37. *.manifest
  38. *.spec
  39. # Installer logs
  40. pip-log.txt
  41. pip-delete-this-directory.txt
  42. # Unit test / coverage reports
  43. htmlcov/
  44. .tox/
  45. .nox/
  46. .coverage
  47. .coverage.*
  48. .cache
  49. nosetests.xml
  50. coverage.xml
  51. *.cover
  52. *.py,cover
  53. .hypothesis/
  54. .pytest_cache/
  55. cover/
  56. # Translations
  57. *.mo
  58. *.pot
  59. # Django stuff:
  60. *.log
  61. local_settings.py
  62. db.sqlite3
  63. db.sqlite3-journal
  64. # Flask stuff:
  65. instance/
  66. # Scrapy stuff:
  67. .scrapy
  68. # Sphinx documentation
  69. docs/_build/
  70. # PyBuilder
  71. .pybuilder/
  72. target/
  73. # Jupyter Notebook
  74. .ipynb_checkpoints
  75. # IPython
  76. profile_default/
  77. ipython_config.py
  78. # pyenv
  79. # For a library or package, you might want to ignore these files since the code is
  80. # intended to run in multiple environments; otherwise, check them in:
  81. # .python-version
  82. # pipenv
  83. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  84. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  85. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  86. # install all needed dependencies.
  87. #Pipfile.lock
  88. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  89. __pypackages__/
  90. # Celery stuff
  91. celerybeat-schedule
  92. celerybeat.pid
  93. # SageMath parsed files
  94. *.sage.py
  95. # Environments
  96. .venv
  97. env/
  98. venv/
  99. ENV/
  100. env.bak/
  101. venv.bak/
  102. # Spyder project settings
  103. .spyderproject
  104. .spyproject
  105. # Rope project settings
  106. .ropeproject
  107. # mkdocs documentation
  108. /site
  109. # mypy
  110. .mypy_cache/
  111. .dmypy.json
  112. dmypy.json
  113. # Pyre type checker
  114. .pyre/
  115. # pytype static type analyzer
  116. .pytype/
  117. # Cython debug symbols
  118. cython_debug/
  119. # PyCharm
  120. .idea/
  121. ### Python ###
  122. # Byte-compiled / optimized / DLL files
  123. # C extensions
  124. # Distribution / packaging
  125. # PyInstaller
  126. # Usually these files are written by a python script from a template
  127. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  128. # Installer logs
  129. # Unit test / coverage reports
  130. # Translations
  131. # Django stuff:
  132. # Flask stuff:
  133. # Scrapy stuff:
  134. # Sphinx documentation
  135. # PyBuilder
  136. # Jupyter Notebook
  137. # IPython
  138. # pyenv
  139. # For a library or package, you might want to ignore these files since the code is
  140. # intended to run in multiple environments; otherwise, check them in:
  141. # .python-version
  142. # pipenv
  143. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  144. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  145. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  146. # install all needed dependencies.
  147. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  148. # Celery stuff
  149. # SageMath parsed files
  150. # Environments
  151. # Spyder project settings
  152. # Rope project settings
  153. # mkdocs documentation
  154. # mypy
  155. # Pyre type checker
  156. # pytype static type analyzer
  157. # Cython debug symbols
  158. # End of https://www.toptal.com/developers/gitignore/api/python,flask