···11+# Local config files
12secrets.json
23config.json
3444-**/venv**
55-55+# VS Code Project Files
66.vscode
7788-__pycache__
981010-.coverage99+############################################################################
1010+# From https://github.com/github/gitignore/blob/master/Python.gitignore
1111+############################################################################
1212+# Byte-compiled / optimized / DLL files
1313+__pycache__/
1414+*.py[cod]
1515+*$py.class
1616+1717+# C extensions
1818+*.so
1919+2020+# Distribution / packaging
2121+.Python
2222+build/
2323+develop-eggs/
2424+dist/
2525+downloads/
2626+eggs/
2727+.eggs/
2828+lib/
2929+lib64/
3030+parts/
3131+sdist/
3232+var/
3333+wheels/
3434+share/python-wheels/
3535+*.egg-info/
3636+.installed.cfg
3737+*.egg
3838+MANIFEST
3939+4040+# PyInstaller
4141+# Usually these files are written by a python script from a template
4242+# before PyInstaller builds the exe, so as to inject date/other infos into it.
4343+*.manifest
4444+*.spec
4545+4646+# Installer logs
4747+pip-log.txt
4848+pip-delete-this-directory.txt
4949+5050+# Unit test / coverage reports
5151+htmlcov/
5252+.tox/
5353+.nox/
5454+.coverage
5555+.coverage.*
5656+.cache
5757+nosetests.xml
5858+coverage.xml
5959+*.cover
6060+*.py,cover
6161+.hypothesis/
6262+.pytest_cache/
6363+cover/
6464+6565+# Translations
6666+*.mo
6767+*.pot
6868+6969+# Django stuff:
7070+*.log
7171+local_settings.py
7272+db.sqlite3
7373+db.sqlite3-journal
7474+7575+# Flask stuff:
7676+instance/
7777+.webassets-cache
7878+7979+# Scrapy stuff:
8080+.scrapy
8181+8282+# Sphinx documentation
8383+docs/_build/
8484+8585+# PyBuilder
8686+.pybuilder/
8787+target/
8888+8989+# Jupyter Notebook
9090+.ipynb_checkpoints
9191+9292+# IPython
9393+profile_default/
9494+ipython_config.py
9595+9696+# pyenv
9797+# For a library or package, you might want to ignore these files since the code is
9898+# intended to run in multiple environments; otherwise, check them in:
9999+# .python-version
100100+101101+# pipenv
102102+# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
103103+# However, in case of collaboration, if having platform-specific dependencies or dependencies
104104+# having no cross-platform support, pipenv may install dependencies that don't work, or not
105105+# install all needed dependencies.
106106+#Pipfile.lock
107107+108108+# PEP 582; used by e.g. github.com/David-OConnor/pyflow
109109+__pypackages__/
110110+111111+# Celery stuff
112112+celerybeat-schedule
113113+celerybeat.pid
114114+115115+# SageMath parsed files
116116+*.sage.py
117117+118118+# Environments
119119+.env
120120+.venv
121121+env/
122122+venv/
123123+ENV/
124124+env.bak/
125125+venv.bak/
126126+127127+# Spyder project settings
128128+.spyderproject
129129+.spyproject
130130+131131+# Rope project settings
132132+.ropeproject
133133+134134+# mkdocs documentation
135135+/site
136136+137137+# mypy
138138+.mypy_cache/
139139+.dmypy.json
140140+dmypy.json
141141+142142+# Pyre type checker
143143+.pyre/
144144+145145+# pytype static type analyzer
146146+.pytype/
147147+148148+# Cython debug symbols
149149+cython_debug/