- Scrapy 爬蟲框架,爬取 HBR 繁體中文文章 - Flask Web 應用程式,提供文章查詢介面 - SQL Server 資料庫整合 - 自動化排程與郵件通知功能 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
45 lines
466 B
Plaintext
45 lines
466 B
Plaintext
# Python 虛擬環境
|
|
.venv/
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# Python 編譯檔案
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
|
|
# 日誌檔案
|
|
logs/
|
|
*.log
|
|
|
|
# 環境變數與敏感資料
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
*.pem
|
|
*.key
|
|
credentials.json
|
|
config.local.py
|
|
|
|
# IDE 設定
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# 資料庫檔案
|
|
*.db
|
|
*.sqlite3
|
|
|
|
# 匯出檔案(如需要可移除此行)
|
|
*.csv
|
|
|
|
# OS 產生的檔案
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Claude 設定(如需要可移除此行)
|
|
.claude/
|