Releases: GabHST/cdp-scraper
Releases · GabHST/cdp-scraper
v1.0.0 — Initial Release
CDP Scraper v1.0.0
Scrape any website protected by Cloudflare, DataDome, or PerimeterX using your real Chrome browser.
Features
- Zero automation detection — uses real Chrome via DevTools Protocol
- Cloudflare cookie caching — solve CAPTCHA once, reuse for all pages
- Multi-page scraping with progress bar and ETA
- Custom JS extraction via CLI or Python API
- Auto-detects Chrome on Windows, macOS, and Linux
Installation
pip install websocket-clientQuick Start
from cdp_scraper import CDPScraper
scraper = CDPScraper(output_dir="./output")
text = scraper.scrape_single_page("https://example.com")See README for full documentation.