douban-skill
Export and sync Douban (豆瓣) book/movie/music/game collections to local CSV files via Frodo API. Supports full export (all history) and RSS incremental sync (recent items). Use when the user wants to export Douban reading/watching/listening/gaming history, back up their Douban data, set up incrementa
By daymade · 639 installs
npx skills add daymade/claude-code-skills --skill douban-skill
Source repository · Upstream listing
Douban Collection Export
Export Douban user collections (books, movies, music, games) to CSV files.
Douban has no official data export; the official API shut down in 2018.
What This Skill Can Do
Full export of all book/movie/music/game collections via Frodo API
RSS incremental sync for daily updates (last ~10 items)
CSV output with UTF 8 BOM (Excel compatible), cross platform (macOS/Windows/Linux)
No login, no cookies, no browser required
Pre flight user ID validation (fail fast on wrong ID)
What This Skill Cannot Do
Cannot export reviews (长评), notes (读书笔记), or broadcasts (广播)
Cannot filter by single category in one run (exports all 4 types together)
Cannot access private profiles (returns 0 items silently)
Why Frodo API (Do NOT Use Web Scraping)
Douban uses PoW (Proof of Work) challenges on web pages, blocking all HTTP scraping.
We tested 7 approaches — only the Frodo API works. Do NOT attempt web scraping,
browser cookie3 + requests , curl with cookies, or Jina Reader.
See [references/troubleshooting.md](references/troubleshooting.md) for the complete
failure log of all 7 tested approaches and why each failed.
Security & Privacy
The API key and HMAC secret in the script are Douban's public mobile app credentials ,
extracted from the APK. They are shared by all Douban app users and do not identify you.
No personal credentials are used or stored. Data is fetched only from frodo.douban.com .
Full Export (Primary Method)
Finding the user ID: Profile URL douban.com/people/<ID / — the ID is after /people/ .
If the user provides a full URL, the script auto extracts the ID.
Environment variables:
DOUBAN USER (required): Douban user ID (alphanumeric or numeric, or full profile URL)
DOUBAN OUTPUT DIR (optional): Override output directory
Default output (auto detected per platform):
macOS: ~/Downloads/douban sync/<user id /
Windows: %USERPROFILE%\Downloads\douban sync\<user id \
Linux: ~/Downloads/douban sync/<user id /
Dependencies: Python 3.6+ standard library only (works with python3 or uv run ).
Example console output:
RSS Incremental Sync (Complementary)
RSS returns only the latest ~10 items (no pagination). Use Full Export first, then RSS for daily updates.
Output Format
Four CSV files per user:
Columns: title, url, date, rating, status, comment
rating : ★ to ★★★★★ (empty if unrated)
date : YYYY MM DD (when the user marked it)
Safe to run multiple times (overwrites with fresh data)
Row counts may be slightly below Douban's displayed count due to delisted items
Workflow
1. Ask for Douban user ID (from profile URL, or accept full URL)
2. Run: DOUBAN USER=<id python3 scripts/douban frodo export.py
3. Verify: row counts in console output should match, check with wc l <output dir / .csv
4. (Optional) Set up RSS sync for daily incremental updates
Troubleshooting
See [references/troubleshooting.md](references/troubleshooting.md) for:
Frodo API auth details (HMAC SHA1 signature computation)
Common errors (code 996 signature error, rate limits, pagination quirks)
Complete failure log of all 7 tested approaches with root causes
Alternative approaches (豆伴 extension, Tampermonkey script, browser console)
API endpoint reference with response format