You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
614 B
52 lines
614 B
# Python bytecode and caches |
|
__pycache__/ |
|
*.py[cod] |
|
*$py.class |
|
|
|
# Virtual environments |
|
.venv/ |
|
venv/ |
|
env/ |
|
ENV/ |
|
|
|
# Packaging and test artifacts |
|
build/ |
|
dist/ |
|
*.egg-info/ |
|
.pytest_cache/ |
|
.mypy_cache/ |
|
.ruff_cache/ |
|
.coverage |
|
htmlcov/ |
|
|
|
# Jupyter |
|
.ipynb_checkpoints/ |
|
|
|
# Environment files and local secrets |
|
.env |
|
.env.* |
|
!.env.example |
|
|
|
# Editors and operating systems |
|
.idea/ |
|
.vscode/ |
|
*.code-workspace |
|
.DS_Store |
|
Thumbs.db |
|
Desktop.ini |
|
|
|
# Local logs and temporary files |
|
*.log |
|
*.tmp |
|
*.temp |
|
*.swp |
|
*~ |
|
|
|
# Data Files |
|
documents/ |
|
|
|
# Database exports (keep hand-written schemas and queries) |
|
dump.sql |
|
dump-*.sql |
|
**/dump.sql |
|
**/dump-*.sql
|
|
|