| # Python | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| *.so | |
| # Virtual environments | |
| .venv/ | |
| venv/ | |
| ENV/ | |
| env/ | |
| # Environment variables | |
| .env | |
| # Build and distribution | |
| build/ | |
| dist/ | |
| *.egg-info/ | |
| .eggs/ | |
| # Testing | |
| .pytest_cache/ | |
| .coverage | |
| .hypothesis/ | |
| htmlcov/ | |
| coverage.xml | |
| *.cover | |
| # Linting and formatting | |
| .ruff_cache/ | |
| .mypy_cache/ | |
| # IDE | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| # Security | |
| *.key | |
| *.pem | |
| *.crt | |
| *.csr | |
| # Temporary files | |
| tmp/ | |
| *.log | |
| cache/ | |
| # macOS | |
| .DS_Store | |
| # Linux | |
| *~ | |
| .directory | |
| .Trash-* | |
| .nfs* | |