ALPHA_VANTAGE

Project status & info:

| Travis Build Status | Dependency Status | Code Coverage | License | Crates Version | | :---: | :---: | :---: | :---: | :---: | | Travis Build Status | Dependency status | Code coverage |License: MIT | Crate |

Rust & OS support:

| Stable | Beta | Nightly | Linux | OSX | Windows | | :---: | :---: | :---: | :---: | :---: | :---: | | Stable support | Beta support | Nightly support | Linux support | OSX support | Windows support |

Rust Client library built for accessing Alphavantage API.

Project Functionality

Add as dependencies

Edit Cargo.toml file to add alpha_vantage as dependencies toml [dependencies] alpha_vantage = "0.3.0"

OR For bleeding edge development use

toml [dependencies] alpha_vantage = {git = "https://github.com/iamsauravsharma/alpha_vantage"}

Usage

Sample code to find out exchange rate between two currency(both physical & digital supported)

Rust let api_key = alpha_vantage::set_api("YOUR-API-HERE"); let exchange = api_key.exchange("USD","CNY"); let rate = exchange.rate().unwrap(); println!("{}",rate);