.gitignore 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. *.tar.gz
  2. *.db
  3. .vscode/
  4. # Byte-compiled / optimized / DLL files
  5. __pycache__/
  6. *.py[cod]
  7. *$py.class
  8. # C extensions
  9. *.so
  10. # Distribution / packaging
  11. .Python
  12. build/
  13. develop-eggs/
  14. dist/
  15. downloads/
  16. eggs/
  17. .eggs/
  18. lib/
  19. lib64/
  20. parts/
  21. sdist/
  22. var/
  23. 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. .coverage
  40. .coverage.*
  41. .cache
  42. nosetests.xml
  43. coverage.xml
  44. *.cover
  45. .hypothesis/
  46. .pytest_cache/
  47. # Translations
  48. *.mo
  49. *.pot
  50. # Django stuff:
  51. *.log
  52. local_settings.py
  53. db.sqlite3
  54. # Flask stuff:
  55. instance/
  56. .webassets-cache
  57. # Scrapy stuff:
  58. .scrapy
  59. # Sphinx documentation
  60. docs/_build/
  61. # PyBuilder
  62. target/
  63. # Jupyter Notebook
  64. .ipynb_checkpoints
  65. # pyenv
  66. .python-version
  67. # celery beat schedule file
  68. celerybeat-schedule
  69. # SageMath parsed files
  70. *.sage.py
  71. # Environments
  72. .env
  73. .venv
  74. env/
  75. venv/
  76. ENV/
  77. env.bak/
  78. venv.bak/
  79. # Spyder project settings
  80. .spyderproject
  81. .spyproject
  82. # Rope project settings
  83. .ropeproject
  84. # mkdocs documentation
  85. /site
  86. # mypy
  87. .mypy_cache/