webpage_quality_analyzer 1.0.2

High-performance webpage quality analyzer with 115 comprehensive metrics - Rust library with WASM, C++, and Python bindings
Documentation
pub mod config_manager;
/// Configuration management for the webpage quality analyzer
pub mod config_models;
pub mod enhanced_models;
pub mod profile_builder;
pub mod profile_modifier; // Phase 1: Profile modification system
pub mod profile_validator;
pub(crate) mod profiles;
pub mod templates;

pub use config_manager::*;
pub use config_models::*;
pub use enhanced_models::*;
pub use profile_builder::{BuilderError, ProfileBuilder};
pub use profile_modifier::*; // Phase 1: Export ProfileModifier
pub use profile_validator::*;
pub use templates::*;
// Note: ContentType from profile_builder must be imported explicitly
// to avoid conflict with enhanced_models::ContentType