Skip to main content

yf_options/
lib.rs

1//! yf-options: Yahoo Finance options chain fetcher with Greeks
2//!
3//! Uses yf-common for shared infrastructure (auth, rate limiting, output).
4
5pub mod cli;
6pub mod client;
7pub mod error;
8pub mod greeks;
9pub mod models;
10pub mod output;
11
12pub use client::OptionsClient;
13pub use error::{YfOptionsError, Result};
14pub use models::*;
15pub use greeks::calculate_greeks;
16
17// Re-export useful yf-common types
18pub use yf_common::{CrumbAuth, AuthProvider};