kiteconnect_rust 0.1.0

RUST API wrapper for kiteconnect APIs
Documentation

kiteconnect-rust

API wrapper for kiteconnect in rust

Usage

extern crate kiteconnect
extern crate serde_json as json;

use kiteconnect::KiteConnect;

let kiteconnect = KiteConnect::new("<API-KEY>", "<ACCESS-TOKEN>");
let holdings: json::Value = kiteconnect.holdings()?;
println!("{:?}", holdings);