# Version control .git .gitignore # Python __pycache__/ *.py[cod] *$py.class *.so .Python .env .venv env/ venv/ ENV/ *.egg-info/ dist/ build/ # Logs and databases *.log logs/ *.sqlite # Downloads and temporary files downloads/ tmp/ temp/ # IDE specific files .idea/ .vscode/ *.swp *.swo # Docker Dockerfile .dockerignore # Documentation docs/ *.md LICENSE # Test files tests/ .pytest_cache/ .coverage htmlcov/