@openvole/paw-scraper
v2.0.0
Published
Web scraper Paw for OpenVole — extract structured data from web pages
Downloads
114
Readme
@openvole/paw-scraper
Extract structured data from web pages.
Part of OpenVole — the microkernel AI agent framework.
Install
npm install @openvole/paw-scraperConfig
{
"name": "@openvole/paw-scraper",
"allow": {
"network": ["*"]
}
}Tools
| Tool | Description |
|------|-------------|
| scrape_page | Fetch a URL and extract structured content: title, headings, text, links, metadata |
| scrape_links | Extract all links from a page with optional text filter |
| scrape_tables | Extract HTML tables as structured arrays (headers + rows) |
| scrape_selector | Extract content matching a CSS selector (text or attributes) |
vs paw-browser
paw-scraper uses cheerio for fast HTML parsing — no browser needed. Use it when you just need to extract data from static HTML. Use paw-browser when you need JavaScript execution, clicking, or form interaction.
