.gitignore 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. # Specific to this Project
  2. db.json
  3. market.json
  4. config.json
  5. # Byte-compiled / optimized / DLL files
  6. __pycache__/
  7. *.py[cod]
  8. *$py.class
  9. # C extensions
  10. *.so
  11. # Distribution / packaging
  12. .Python
  13. build/
  14. develop-eggs/
  15. dist/
  16. downloads/
  17. eggs/
  18. .eggs/
  19. lib/
  20. lib64/
  21. parts/
  22. sdist/
  23. var/
  24. wheels/
  25. share/python-wheels/
  26. *.egg-info/
  27. .installed.cfg
  28. *.egg
  29. MANIFEST
  30. # PyInstaller
  31. # Usually these files are written by a python script from a template
  32. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  33. *.manifest
  34. *.spec
  35. # Installer logs
  36. pip-log.txt
  37. pip-delete-this-directory.txt
  38. # Unit test / coverage reports
  39. htmlcov/
  40. .tox/
  41. .nox/
  42. .coverage
  43. .coverage.*
  44. .cache
  45. nosetests.xml
  46. coverage.xml
  47. *.cover
  48. *.py,cover
  49. .hypothesis/
  50. .pytest_cache/
  51. cover/
  52. # Translations
  53. *.mo
  54. *.pot
  55. # Django stuff:
  56. *.log
  57. local_settings.py
  58. db.sqlite3
  59. db.sqlite3-journal
  60. # Flask stuff:
  61. instance/
  62. .webassets-cache
  63. # Scrapy stuff:
  64. .scrapy
  65. # Sphinx documentation
  66. docs/_build/
  67. # PyBuilder
  68. .pybuilder/
  69. target/
  70. # Jupyter Notebook
  71. .ipynb_checkpoints
  72. # IPython
  73. profile_default/
  74. ipython_config.py
  75. # pyenv
  76. # For a library or package, you might want to ignore these files since the code is
  77. # intended to run in multiple environments; otherwise, check them in:
  78. # .python-version
  79. # pipenv
  80. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  81. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  82. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  83. # install all needed dependencies.
  84. #Pipfile.lock
  85. # poetry
  86. # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
  87. # This is especially recommended for binary packages to ensure reproducibility, and is more
  88. # commonly ignored for libraries.
  89. # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
  90. #poetry.lock
  91. # pdm
  92. # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
  93. #pdm.lock
  94. # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
  95. # in version control.
  96. # https://pdm.fming.dev/#use-with-ide
  97. .pdm.toml
  98. # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
  99. __pypackages__/
  100. # Celery stuff
  101. celerybeat-schedule
  102. celerybeat.pid
  103. # SageMath parsed files
  104. *.sage.py
  105. # Environments
  106. .env
  107. .venv
  108. env/
  109. venv/
  110. ENV/
  111. env.bak/
  112. venv.bak/
  113. # Spyder project settings
  114. .spyderproject
  115. .spyproject
  116. # Rope project settings
  117. .ropeproject
  118. # mkdocs documentation
  119. /site
  120. # mypy
  121. .mypy_cache/
  122. .dmypy.json
  123. dmypy.json
  124. # Pyre type checker
  125. .pyre/
  126. # pytype static type analyzer
  127. .pytype/
  128. # Cython debug symbols
  129. cython_debug/
  130. # PyCharm
  131. # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
  132. # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
  133. # and can be added to the global gitignore or merged into this file. For a more nuclear
  134. # option (not recommended) you can uncomment the following to ignore the entire idea folder.
  135. #.idea/