1 个不稳定版本
0.1.0 | 2019年4月23日 |
---|
#35 in #市场
17KB
401 行
walutomat-rs 是一个用于与 Walutomat API 交互的 Rust 库。
- 在 P2P 货币市场上进行货币兑换
- 与 CurrencyOne 进行货币兑换,保证价格
- 国际转账
extern crate walutomat;
fn main() {
let client = walutomat::v2::Client::new("https://api.walutomat.pl", "key");
let orderbook = client.market_fx_best_offers("EURPLN").unwrap().result.unwrap();
println!("{}", orderbook.pair);
for entry in orderbook.asks.iter().zip(orderbook.bids) {
println!("{} {}", entry.0.price, entry.1.price);
}
}
lib.rs
:
Walutomat API
walutomat-rs
是 Walutomat API 的客户端。
依赖关系
~20MB
~440K SLoC