Scrape Engine
Naive Scrape
from symai.interfaces import Interface
scraper = Interface("naive_scrape")
url = "https://docs.astral.sh/uv/guides/scripts/#next-steps"
res = scraper(url)Parallel (Parallel.ai)
from symai.extended import Interface
scraper = Interface("parallel")
article = scraper.scrape(
"https://trafilatura.readthedocs.io/en/latest/crawls.html",
full_content=True, # optional: request full document text
excerpts=True, # optional: default True, retain excerpt snippets
objective="Summarize crawl guidance for internal notes."
)
print(str(article))Firecrawl
Examples
Configuration
JSON Schema Extraction
Supported Parameters
Last updated