# Git 相关文件 .git .gitignore .gitattributes # IDE 相关文件 .idea .vscode *.swp *.swo # Python 相关文件 __pycache__ *.pyc *.pyo *.pyd .Python env pip-log.txt pip-delete-this-directory.txt .tox .coverage .coverage.* .cache nosetests.xml coverage.xml *.cover *.log .git .mypy_cache .pytest_cache .hypothesis # 虚拟环境 .venv venv/ ENV/ env/ .venv/ # 系统文件 .DS_Store .DS_Store? ._* .Spotlight-V100 .Trashes ehthumbs.db Thumbs.db # 临时文件 *.tmp *.temp *.bak *.backup # 日志文件 *.log logs/ # 文档文件 README.md TODO.md *.md # 测试文件 test/ tests/ *_test.py test_*.py