.gitignore 3.6 KB

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