# Python .gitignore Template
# --------------------------------------------------------------------------------

## Python Bytecode and Compiled Files
__pycache__/
*.py[cod]
*$py.class
.ruff_cache/

## C Extensions
*.so

## Distribution / Packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
.pybuilder/
target/

## Package Management
# pipenv
#Pipfile.lock

# UV
#uv.lock

# poetry
#poetry.lock

# pdm
#pdm.lock
.pdm.toml
.pdm-python
.pdm-build/

# PEP 582 local packages
__pypackages__/

## Build Tools
# PyInstaller
*.manifest
*.spec

## Testing and Coverage
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/

## Environment and Virtual Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

## Documentation
# Translations
*.mo
*.pot

# Sphinx
docs/_build/

# mkdocs
/site

## Logs and Databases
# Django
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask
instance/
.webassets-cache

# Scrapy
.scrapy

## Type Checking and Static Analysis
# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre
.pyre/

# pytype
.pytype/

## Miscellaneous
# Cython debug symbols
cython_debug/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
# .python-version

# Celery
celerybeat-schedule
celerybeat.pid

# SageMath
*.sage.py

# IDE specific files
# Spyder
.spyderproject
.spyproject

# Rope
.ropeproject

# PyPI configuration
.pypirc

# Aider
.aider*
