rust_scraper 1.0.0

Production-ready web scraper with Clean Architecture, TUI selector, and sitemap support
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Scraping implementations
//!
//! Contains the actual scraping logic:
//! - Readability algorithm wrapper
//! - Fallback text extraction
//! - Asset downloading (feature-gated)

#[cfg(any(feature = "images", feature = "documents"))]
pub mod asset_download;
pub mod fallback;
pub mod readability;