/stockquote-rs

Primary LanguageRustBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

StockQuote

A safe and easy to use stock quote library. Based on Yahoo Finance.

Usage:

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    let result = stockquote::get("IBM").await?;
    println!("{:?}", result);
    Ok(())
}

Upcoming

  • Price history data
  • Realtime price data