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
12
13
14
15
16
//! Adapters — External integrations (feature-gated)
//!
//! This layer contains adapters for external concerns:
//! - Asset downloading (images, documents)
//! - URL extraction from HTML
//! - MIME type detection
//! - TUI for interactive selection
//!
//! These are feature-gated to keep the core library lightweight.

pub mod detector;
pub mod downloader;
pub mod extractor;
pub mod tui;

pub use detector::{get_extension, AssetType};