No Description

.gitignore 2.0KB

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