finance-query-core 0.3.1

A Rust client library for Yahoo Finance API - fetch quotes, historical data, financials, streaming, and more
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Yahoo Finance client module.
//!
//! This module provides the HTTP client components for interacting with
//! Yahoo Finance APIs, including authentication management and error handling.

pub mod error;
pub mod fetch_client;
pub mod scraper;
pub mod yahoo_auth;
pub mod yahoo_client;

// Re-export types for convenience
pub use error::YahooError;
pub use fetch_client::FetchClient;
pub use yahoo_auth::YahooAuthManager;
pub use yahoo_client::YahooFinanceClient;