turboscraper 0.1.1

A high-performance, concurrent web scraping framework for Rust with built-in support for retries, storage backends, and concurrent request handling
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod core;
pub mod http;
pub mod parser;
pub mod scrapers;
pub mod stats;
pub mod storage;

pub mod examples;

pub use core::Crawler;
pub use core::{ScraperError, ScraperResult, Spider};
pub use http::{HttpRequest, HttpResponse};
pub use parser::Parser;
pub use scrapers::Scraper;
pub use stats::StatsTracker;
pub use storage::DiskStorage;