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
17
//! Export pipeline implementations for RAG systems
//!
//! This module contains the concrete implementations of the Exporter trait
//! for different output formats:
//! - JSONL (JSON Lines)
//! - Zvec (Alibaba's in-process vector database)
//!
//! Following Clean Architecture: infrastructure depends on domain.

pub mod jsonl_exporter;
pub mod state_store;
pub mod zvec_exporter;

// Re-export for convenience
pub use jsonl_exporter::JsonlExporter;
pub use state_store::StateStore;
pub use zvec_exporter::ZvecExporter;