# temp files .DS_Store # IDE files .vscode/ .idea/ # Python files __pycache__/ *.pyc *.pyo # Virtual environments env/ .venv/ # environment variables .env # github instruction files .github/instructions/ # Python packaging artifacts build/ dist/ *.egg-info/ pip-wheel-metadata/ # Test artifacts .coverage coverage.xml htmlcov/ .pytest_cache/ # Mypy cache .mypy_cache/ # Logs *.log logs/ # SQLite database *.sqlite3 test*.db