60 lines
541 B
Plaintext
60 lines
541 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
env/
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# 虚拟环境
|
|
venv/
|
|
ENV/
|
|
env/
|
|
wowfish/
|
|
|
|
# 日志文件
|
|
*.log
|
|
*.log.*
|
|
notification_client.log*
|
|
|
|
# 客户端特定文件
|
|
client_key.txt
|
|
notification_history.json
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
.project
|
|
.pydevproject
|
|
.settings/
|
|
|
|
# 操作系统
|
|
.DS_Store
|
|
Thumbs.db
|
|
desktop.ini
|
|
|
|
# 配置文件备份
|
|
*.yml.bak
|
|
*.yaml.bak
|
|
|
|
# 临时文件
|
|
*.tmp
|
|
*.temp
|
|
*.bak |