What problem does it solve? Extracting data from websites often fails when pages require JavaScript rendering or are protected by anti-bot systems like Cloudflare, and built-in extraction tools return incomplete results. ## 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 and Python APIs: Extract pages directly from the command line into HTML, Markdown, text, or JSON, or script complex scraping in Python. - Use Case: Scrape a paginated quotes site by writing a Spider class that yields structured items, follows next-page links, and exports results to JSON. ## Quick Start Use the scrapling skill to extract the main content from https://example.com into a Markdown file.