alpha_vantage_wrapper

Crates.ioalpha_vantage_wrapper
lib.rsalpha_vantage_wrapper
version0.2.4
sourcesrc
created_at2023-10-17 10:13:20.522296
updated_at2023-10-17 12:08:09.914086
descriptionA wrapper library for the Alpha Vantage API!
homepage
repository
max_upload_size
id1005711
size40,186
Braden Everson (BradenEverson)

documentation

README

AlphaVantageWrapper

Stock analysis API wrapper crate for rust! Get real time data on publicly accessible stock information

Installation

Use the package manager cargo to add AlphaVantageWrapper to your rust project.

cargo add AlphaVantageWrapper

or add the dependency directly in your cargo.toml file

[dependencies]
AlphaVantageWrapper = "{version}"

Usage

use reqwest::Error;
use AlphaVantageWrapper::broker::broker_api::BrokerAPI;

#[tokio::main]
async fn main() -> Result<(),Error>{
    let alpha_api = BrokerAPI::new("[API KEY]");

    Ok(())
}

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

Commit count: 0

cargo fmt