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 fetching static pages, rendering JS-heavy sites, bypassing bot detection, and crawling multi-page targets. ## Core Features & Use Cases - Three Fetching Strategies: Use Fetcher for fast static HTTP requests, DynamicFetcher for JS-rendered SPAs, and StealthyFetcher for Cloudflare-protected sites with Turnstile solving. - Spider Framework: Crawl multiple pages with concurrent requests, link following, multi-session routing, and pause/resume checkpoints. - Rich Element Selection: Query results with CSS selectors, XPath, text/regex search, and similar-element detection for product listings. - Use Case: Scrape a Cloudflare-protected e-commerce catalog by running a stealth fetch with solve_cloudflare enabled, extract product names and prices with CSS selectors, and export results to JSON. ## Quick Start Use the scrapling skill to extract the main content of https://example.com into a Markdown file.