cybrscrape-officiallisted
Install: claude install-skill M4ST3R-C0NTR0L/CybrScrape
# CybrScrape
CybrScrape is an adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl.
Its parser learns from website changes and automatically relocates your elements when pages update. Its fetchers bypass anti-bot systems like Cloudflare Turnstile out of the box. And its spider framework lets you scale up to concurrent, multi-session crawls with pause/resume and automatic proxy rotation — all in a few lines of Python. One library, zero compromises.
Blazing fast crawls with real-time stats and streaming. Built by Web Scrapers for Web Scrapers and regular users, there's something for everyone.
**Requires: Python 3.10+**
**This is the official skill for the cybrscrape library by the library author.**
## Setup (once)
Create a virtual Python environment through any way available, like `venv`, then inside the environment do:
`pip install "cybrscrape[all]>=0.4.2"`
Then do this to download all the browsers' dependencies:
```bash
cybrscrape install --force
```
Make note of the `cybrscrape` binary path and use it instead of `cybrscrape` from now on with all commands (if `cybrscrape` is not on `$PATH`).
### Docker
Another option if the user doesn't have Python or doesn't want to use it is to use the Docker image, but this can be used only in the commands, so no writing Python code for cybrscrape this way:
```bash
docker pull cybrflux/cybrscrape
```
or
```bash
docker pull ghcr.io/m4st3r-c0ntr0l/cybrscrape:latest
```
## CLI Usag