What problem does it solve? Extracting data from websites often fails when pages require JavaScript rendering, sit behind Cloudflare or anti-bot protection, or span many linked pages. This Skill provides CLI and Python workflows for HTTP fetching, stealth browser automation, and multi-page crawling so you can reliably collect web data. ## Core Features & Use Cases - Three Fetching Strategies: Use Fetcher for static pages, DynamicFetcher for JS-rendered SPAs, and StealthyFetcher for Cloudflare-protected sites. - Spider Framework: Crawl multiple pages with link following, concurrent requests, multi-session routing, and pause/resume checkpoints. - CLI Extraction: Run one-line commands like scrapling extract stealthy-fetch to save pages as HTML, Markdown, text, or JSON. - Use Case: Scrape a paginated quotes site by defining a Spider class that extracts text, authors, and tags from each page, follows the next-page link, and exports results to JSON. ## Quick Start Use the scrapling skill to extract the main content of a given URL into a Markdown file, choosing stealth mode if the site is Cloudflare-protected.