| # Python | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| *.so | |
| .Python | |
| *.egg-info/ | |
| dist/ | |
| build/ | |
| *.egg | |
| # Virtual environments | |
| venv/ | |
| env/ | |
| .venv/ | |
| test-env/ | |
| # Environment files | |
| .env | |
| .env.local | |
| .env.*.local | |
| # IDE | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| *~ | |
| # OS | |
| .DS_Store | |
| Thumbs.db | |
| # Git | |
| .git/ | |
| .gitignore | |
| .gitattributes | |
| # Documentation | |
| *.md | |
| docs/ | |
| # Tests | |
| tests/ | |
| .pytest_cache/ | |
| .coverage | |
| # Logs | |
| *.log | |
| # Database | |
| *.db | |
| *.sqlite | |
| *.sqlite3 | |
| # Large files | |
| *.tar | |
| *.tar.gz | |
| *.zip | |
| # Temporary files | |
| tmp/ | |
| temp/ | |
| *.tmp | |