Files
Resume-python/.gitignore
2026-04-27 01:19:38 +08:00

42 lines
757 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# ========== 密钥与登录(切勿提交到远程)==========
.env
.env.*
*.session
*.session-journal
# ========== 运行状态与抓取进度(与频道数据配套,勿提交)==========
state.json
# ========== 按频道存放的抓取结果SQLite、媒体、导出文件==========
# 目录名一般为 Telegram 超级群/频道 ID-100xxxxxxxxxx
-100*/
# ========== 脚本生成的列表(可随时再生成)==========
channels_list.csv
# ========== Python ==========
__pycache__/
*.py[cod]
*$py.class
.Python
venv/
.venv/
*.egg-info/
.eggs/
dist/
build/
# ========== 编辑器 / 本地工具 ==========
.cursor/
.vscode/
.idea/
*.swp
*.swo
.DS_Store
Thumbs.db
# ========== 日志与临时文件 ===========
*.log
*.tmp
*.temp