You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
# Python 字节码与缓存
__pycache__/
*.py[cod]
*$py.class
# C 扩展
*.so
# 打包/发布产物
.Python
build/
dist/
downloads/
eggs/
.eggs/
wheels/
share/python-wheels/
sdist/
parts/
var/
lib/
lib64/
*.egg-info/
.installed.cfg
*.egg
# Hatch
.hatch/
shell/
# 虚拟环境(你的仓库中有 env/virtual/iti-flask)
.venv/
venv/
env/
ENV/
# Flask 实例与本地配置
instance/
.flaskenv
.env
.env.*
.envrc
# 运行期与数据库文件(你的项目含 iti/runtime/iti-flask_dev.db)
*.db
*.sqlite
*.sqlite3
*.db-journal
*.db-wal
*.db-shm
runtime/
logs/
*.log
*.pid
# 测试与覆盖率
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.cache/
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
# 类型检查/静态分析缓存
.mypy_cache/
.ruff_cache/
.pytype/
.pyre/
dmypy.json
# 编辑器/IDE
# .vscode/
# .idea/
# *.iml
# Jupyter
.ipynb_checkpoints/
# 操作系统杂项
.DS_Store
Thumbs.db
Desktop.ini
# 其他
/.python-version