Initial commit: 블로그 자동 수익 엔진 v2

- 수집봇: Google Trends, GitHub Trending, HN, Product Hunt, RSS 수집
  + 품질 점수(0-100) 시스템 + 6가지 폐기 규칙
- 발행봇: Blogger API v3 자동 발행 + 안전장치(팩트체크/위험키워드)
- 링크봇: 쿠팡 파트너스 HMAC 서명 + 자동 링크 삽입
- 분석봇: 색인률/CTR/14일성과 등 5대 핵심 지표 + Telegram 리포트
- 이미지봇: manual/request/auto 3가지 모드
  request 모드 — 주기적 프롬프트 전송 → Telegram으로 이미지 수령
- 스케줄러: APScheduler + Telegram 봇 명령 리스너

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
sinmb79
2026-03-25 06:54:43 +09:00
commit 15eb007b5a
20 changed files with 4507 additions and 0 deletions

34
.gitignore vendored Normal file
View File

@@ -0,0 +1,34 @@
# 환경 변수 / 시크릿 — 절대 커밋하지 말 것
.env
token.json
credentials.json
# Python
venv/
__pycache__/
*.pyc
*.pyo
*.pyd
*.egg-info/
dist/
build/
.eggs/
# 런타임 데이터 (개인 글감/발행 이력)
data/topics/*.json
data/collected/*.json
data/discarded/*.json
data/pending_review/*.json
data/published/*.json
data/analytics/*.json
data/drafts/*.json
data/images/
data/images/pending_prompts.json
# 로그
logs/
# IDE
.vscode/
.idea/
*.swp