UNPKG

crawlee

Version:

The scalable web crawling and scraping library for JavaScript/Node.js. Enables development of data extraction and web automation jobs (not only) with headless Chrome and Puppeteer.

27 lines 1.04 kB
import { enqueueLinks } from '@crawlee/core'; import { playwrightUtils } from '@crawlee/playwright'; import { puppeteerUtils } from '@crawlee/puppeteer'; import { social, sleep, downloadListOfUrls, parseOpenGraph } from '@crawlee/utils'; export * from '@crawlee/core'; export * from '@crawlee/utils'; export * from '@crawlee/basic'; export * from '@crawlee/browser'; export * from '@crawlee/http'; export * from '@crawlee/jsdom'; export * from '@crawlee/linkedom'; export * from '@crawlee/cheerio'; export * from '@crawlee/puppeteer'; export * from '@crawlee/playwright'; export * from '@crawlee/browser-pool'; export declare const utils: { puppeteer: typeof puppeteerUtils; playwright: typeof playwrightUtils; // @ts-ignore optional peer dependency or compatibility with es2022 log: import("@apify/log").Log; enqueueLinks: typeof enqueueLinks; social: typeof social; sleep: typeof sleep; downloadListOfUrls: typeof downloadListOfUrls; parseOpenGraph: typeof parseOpenGraph; }; //# sourceMappingURL=index.d.ts.map