You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

149 lines
2.1 KiB

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