| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- # Git
- .git
- .gitignore
- # Python
- __pycache__
- *.py[cod]
- *$py.class
- *.so
- .Python
- .pytest_cache
- .hypothesis
- *.egg-info
- dist
- build
- # 虚拟环境
- venv
- .venv
- env
- .env
- # IDE
- .idea
- .vscode
- *.swp
- *.swo
- # 测试
- test/
- *.test.py
- test_*.py
- pytest.ini
- .coverage
- htmlcov
- # 文档
- *.md
- !README.md
- # 本地数据库(容器内会重新创建)
- *.db
- # 临时文件
- *.log
- *.tmp
- .DS_Store
|