# Virtual environments
.venv/
venv/
env/

# Python bytecode
__pycache__/
*.py[cod]
*$py.class
*.so

# Type hints
.pytyped

# Testing
.pytest_cache/
.coverage
htmlcov/
.tox/
.nox/

# Build artifacts
build/
dist/
*.egg-info/
*.egg
.eggs/

# IDE
.vscode/
.idea/
*.swp
*.swo

# Local examples
examples2/

# Environment files
.env
.env.local

# OS files
.DS_Store
Thumbs.db

traddzy/