Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Scrape a public Letterboxd user's watchlist into a CSV/JSONL list of titles and film URLs without logging in. Use when a user asks to export, scrape, or mirror a Letterboxd watchlist, or to build watch-next queues.
Scrape a public Letterboxd user's watchlist into a CSV/JSONL list of titles and film URLs without logging in. Use when a user asks to export, scrape, or mirror a Letterboxd watchlist, or to build watch-next queues.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Use the bundled script to scrape a public Letterboxd watchlist (no auth). Always ask the user for the Letterboxd username if they did not provide one.
scripts/scrape_watchlist.py
uv run scripts/scrape_watchlist.py <username> --out watchlist.csv
uv run scripts/scrape_watchlist.py <username> --out watchlist.jsonl --delay-ms 300 --timeout 30 --retries 2
--out *.csv โ title,link --out *.jsonl โ one JSON object per line: { "title": "โฆ", "link": "โฆ" }
Letterboxd usernames are case-insensitive, but must be exact. The script scrapes paginated pages: /watchlist/page/<n>/. Stop condition: first page with no data-target-link="/film/..." poster entries. The scraper validates username format ([A-Za-z0-9_-]+) and uses retries + timeout. Default crawl delay is 250ms/page to be polite and reduce transient failures. This is best-effort HTML scraping; if Letterboxd changes markup, adjust the regex in the script.
This skill only scrapes a public Letterboxd watchlist and writes CSV/JSONL output. Do not read local folders, scan libraries, or perform unrelated follow-up actions unless explicitly requested by the user.
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.