# Python __pycache__/ *.py[cod] *$py.class *.so *.egg *.egg-info/ dist/ build/ .pytest_cache/ .coverage htmlcov/ # 虚拟环境 venv/ env/ ENV/ # IDE .vscode/ .idea/ *.swp *.swo # Git .git/ .gitignore # 环境变量(包含敏感信息) .env .env.* # 测试数据 *.pkl test_*.py *_test.py # 日志和输出 *.log api_outputs/ logs/ # 文档 *.md docs/ # 系统文件 .DS_Store Thumbs.db # Claude相关 .claude/ # 临时文件 *.tmp *.bak *.backup