2026-03-29 16:40:10 +02:00
|
|
|
//! webclaw-fetch: HTTP client layer with browser TLS fingerprint impersonation.
|
|
|
|
|
//! Uses webclaw-http for browser-grade TLS + HTTP/2 fingerprinting.
|
|
|
|
|
//! Automatically detects PDF responses and delegates to webclaw-pdf.
|
2026-03-23 18:31:11 +01:00
|
|
|
pub mod browser;
|
|
|
|
|
pub mod client;
|
|
|
|
|
pub mod crawler;
|
2026-03-26 15:28:23 +01:00
|
|
|
pub mod document;
|
2026-03-23 18:31:11 +01:00
|
|
|
pub mod error;
|
2026-03-29 16:54:35 +02:00
|
|
|
pub mod linkedin;
|
2026-03-23 18:31:11 +01:00
|
|
|
pub mod proxy;
|
2026-03-29 16:54:35 +02:00
|
|
|
pub mod reddit;
|
2026-03-23 18:31:11 +01:00
|
|
|
pub mod sitemap;
|
|
|
|
|
|
|
|
|
|
pub use browser::BrowserProfile;
|
|
|
|
|
pub use client::{BatchExtractResult, BatchResult, FetchClient, FetchConfig, FetchResult};
|
2026-03-25 21:38:28 +01:00
|
|
|
pub use crawler::{CrawlConfig, CrawlResult, CrawlState, Crawler, PageResult};
|
2026-03-23 18:31:11 +01:00
|
|
|
pub use error::FetchError;
|
|
|
|
|
pub use proxy::{parse_proxy_file, parse_proxy_line};
|
|
|
|
|
pub use sitemap::SitemapEntry;
|
2026-03-30 12:09:50 +02:00
|
|
|
pub use webclaw_http::HeaderMap;
|
2026-03-23 18:31:11 +01:00
|
|
|
pub use webclaw_pdf::PdfMode;
|