···11+# Created by https://www.toptal.com/developers/gitignore/api/python
22+# Edit at https://www.toptal.com/developers/gitignore?templates=python
33+44+### Python ###
55+# Byte-compiled / optimized / DLL files
66+__pycache__/
77+*.py[cod]
88+*$py.class
99+1010+# C extensions
1111+*.so
1212+1313+# Distribution / packaging
1414+.Python
1515+build/
1616+develop-eggs/
1717+dist/
1818+downloads/
1919+eggs/
2020+.eggs/
2121+lib/
2222+lib64/
2323+parts/
2424+sdist/
2525+var/
2626+wheels/
2727+share/python-wheels/
2828+*.egg-info/
2929+.installed.cfg
3030+*.egg
3131+MANIFEST
3232+3333+# PyInstaller
3434+# Usually these files are written by a python script from a template
3535+# before PyInstaller builds the exe, so as to inject date/other infos into it.
3636+*.manifest
3737+*.spec
3838+3939+# Installer logs
4040+pip-log.txt
4141+pip-delete-this-directory.txt
4242+4343+# Unit test / coverage reports
4444+htmlcov/
4545+.tox/
4646+.nox/
4747+.coverage
4848+.coverage.*
4949+.cache
5050+nosetests.xml
5151+coverage.xml
5252+*.cover
5353+*.py,cover
5454+.hypothesis/
5555+.pytest_cache/
5656+cover/
5757+5858+# Translations
5959+*.mo
6060+*.pot
6161+6262+# Django stuff:
6363+*.log
6464+local_settings.py
6565+db.sqlite3
6666+db.sqlite3-journal
6767+6868+# Flask stuff:
6969+instance/
7070+.webassets-cache
7171+7272+# Scrapy stuff:
7373+.scrapy
7474+7575+# Sphinx documentation
7676+docs/_build/
7777+7878+# PyBuilder
7979+.pybuilder/
8080+target/
8181+8282+# Jupyter Notebook
8383+.ipynb_checkpoints
8484+8585+# IPython
8686+profile_default/
8787+ipython_config.py
8888+8989+# pyenv
9090+# For a library or package, you might want to ignore these files since the code is
9191+# intended to run in multiple environments; otherwise, check them in:
9292+# .python-version
9393+9494+# pipenv
9595+# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
9696+# However, in case of collaboration, if having platform-specific dependencies or dependencies
9797+# having no cross-platform support, pipenv may install dependencies that don't work, or not
9898+# install all needed dependencies.
9999+#Pipfile.lock
100100+101101+# poetry
102102+# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
103103+# This is especially recommended for binary packages to ensure reproducibility, and is more
104104+# commonly ignored for libraries.
105105+# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
106106+#poetry.lock
107107+108108+# pdm
109109+# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
110110+#pdm.lock
111111+# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
112112+# in version control.
113113+# https://pdm.fming.dev/#use-with-ide
114114+.pdm.toml
115115+116116+# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
117117+__pypackages__/
118118+119119+# Celery stuff
120120+celerybeat-schedule
121121+celerybeat.pid
122122+123123+# SageMath parsed files
124124+*.sage.py
125125+126126+# Environments
127127+.env
128128+.venv
129129+env/
130130+venv/
131131+ENV/
132132+env.bak/
133133+venv.bak/
134134+135135+# Spyder project settings
136136+.spyderproject
137137+.spyproject
138138+139139+# Rope project settings
140140+.ropeproject
141141+142142+# mkdocs documentation
143143+/site
144144+145145+# mypy
146146+.mypy_cache/
147147+.dmypy.json
148148+dmypy.json
149149+150150+# Pyre type checker
151151+.pyre/
152152+153153+# pytype static type analyzer
154154+.pytype/
155155+156156+# Cython debug symbols
157157+cython_debug/
158158+159159+# PyCharm
160160+# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
161161+# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
162162+# and can be added to the global gitignore or merged into this file. For a more nuclear
163163+# option (not recommended) you can uncomment the following to ignore the entire idea folder.
164164+#.idea/
165165+166166+### Python Patch ###
167167+# Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
168168+poetry.toml
169169+170170+# ruff
171171+.ruff_cache/
172172+173173+# LSP config files
174174+pyrightconfig.json
175175+176176+# End of https://www.toptal.com/developers/gitignore/api/python