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
//! URL extraction adapter
//!
//! Extracts image and document URLs from HTML content.

pub use crate::adapters::detector::get_extension;

// Re-export extractor module (it's in the root, not in adapters)
pub use crate::extractor::{extract_all_assets, extract_documents, extract_images, AssetUrl};