stockquote 0.1.2

Safe and easy to use stock quote library. All data coming from Yahoo Finance.
Documentation

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(())
}