scrape_with
Run any registered scraper by name, including plugins, by providing the scraper name and optional arguments.
Instructions
Run any registered scraper by name, including plugins, with arbitrary args.
This is the generic entry point for scrapers that don't have a dedicated tool
of their own — notably third-party plugins. Call list_available_scrapers
first to see valid names.
Args:
name: A scraper name from list_available_scrapers, e.g. "wikipedia".
args: Keyword arguments passed to that scraper's scrape() method.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| args | No | ||
| name | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | No | ||
| count | No | ||
| errors | No | ||
| scraper | No | ||
| source_urls | No |