66 lines
633 B
Plaintext
66 lines
633 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# C extensions
|
|
*.so
|
|
*.pyd
|
|
*.pyo
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# Packaging
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
.eggs/
|
|
pip-wheel-metadata/
|
|
|
|
# Testing and coverage
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
.pytest_cache/
|
|
.cache/
|
|
.mypy_cache/
|
|
.pytype/
|
|
.ruff_cache/
|
|
.pyre/
|
|
|
|
# Editor and OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Logs and temp
|
|
logs/
|
|
*.log
|
|
tmp/
|
|
temp/
|
|
|
|
# Application data (runtime)
|
|
data/sessions/
|
|
|
|
# Node (if ever used for frontends)
|
|
node_modules/
|
|
|
|
# pyenv
|
|
.python-version
|
|
|
|
# Jupyter
|
|
.ipynb_checkpoints/ |