5 releases
0.2.0 | Oct 16, 2023 |
---|---|
0.1.4 | Oct 15, 2023 |
0.1.3 | Oct 15, 2023 |
0.1.1 | Oct 15, 2023 |
0.1.0 | Oct 15, 2023 |
#4 in #vantage
12KB
233 lines
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
Dependencies
~7–18MB
~255K SLoC