| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- # IDE specific
- .idea/
- # Python bytecode
- *.pyc
- *.pyo
- *.pyd
- __pycache__/
- *.so
- # Flask-specific
- logs/
- *.log
- # Database files
- *.sqlite
- # Test coverage and Pytest
- .pytest_cache/
- .coverage
- htmlcov/
- # Distribution / packaging
- .Python
- build/
- develop-eggs/
- dist/
- downloads/
- eggs/
- .eggs/
- lib/
- lib64/
- parts/
- sdist/
- var/
- *.egg-info/
- .installed.cfg
- *.egg
- # 功能结果文件
- static/
- # 训练数据与任务元数据
- data/
|