# ========================= # Python bytecode & cache # ========================= __pycache__/ *.py[cod] *$py.class # ========================= # Virtual environments # ========================= .env .venv env/ venv/ ENV/ # ========================= # Packaging / build # ========================= build/ dist/ *.egg-info/ .eggs/ # ========================= # Test & coverage # ========================= .pytest_cache/ .coverage htmlcov/ .tox/ .nox/ # ========================= # IDE / editors # ========================= .vscode/ .idea/ *.swp *.swo # ========================= # OS generated files # ========================= .DS_Store Thumbs.db # ========================= # Logs # ========================= *.log # ========================= # Application data # ========================= data/*.json data/*.bak # But keep example files !data/example.json