Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bradeneverson/alphavantagewrapper
https://github.com/bradeneverson/alphavantagewrapper
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bradeneverson/alphavantagewrapper
- Owner: BradenEverson
- Created: 2023-10-13T12:17:23.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2023-10-17T12:07:29.000Z (about 1 year ago)
- Last Synced: 2023-10-17T16:57:42.897Z (about 1 year ago)
- Language: Rust
- Size: 62.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AlphaVantageWrapper
Stock analysis API wrapper crate for rust! Get real time data on publicly accessible stock information
## Installation
Use the package manager [cargo](https://crates.io/) to add AlphaVantageWrapper to your rust project.
```bash
cargo add AlphaVantageWrapper
```or add the dependency directly in your **cargo.toml** file
```toml
[dependencies]
AlphaVantageWrapper = "{version}"
```## Usage
```rust
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](https://choosealicense.com/licenses/mit/)