Installation
Install WebSkrap from PyPI:
pip install webskrapDownload the browser binaries used by Playwright and Patchright:
webskrap installVerify the installation:
webskrap doctor
webskrap profilesIncluded by default
pip install webskrap includes the Python dependencies for:
- Playwright browser automation.
- Patchright stealth sessions.
- The
webskrap-mcpserver.
No extras are needed; everything above ships with the base install.
Use machine-readable setup output in automation:
webskrap install --format json
webskrap doctor --format jsonDevelopment install
For local development:
git clone https://github.com/kacigaya/webskrap.git
cd webskrap
pip install -e ".[dev]"
webskrap installRun checks:
pytest -q
ruff check .
(cd web && bun run build)If you use uv, the same checks can run through the project environment:
uv run pytest -q
uv run ruff check .