0.1.0 • Published 8 months ago

scrapester v0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

scrapester

Turn any website into LLM structured data.

Usage Example

import { ScrapesterClient } from 'scrapester';

const client = new ScrapesterClient('your-api-key');

// Scrape a single URL const result = await client.scrape('https://example.com'); console.log(result.markdown);

// Crawl a website const results = await client.crawl('https://example.com', { maxPages: 10, maxDepth: 2 });

0.1.0

8 months ago