Erguotou (the library) is a set of utilities for writing http client with hyper.
Erguotou (the name) is a kind of Chinese wine (Bai-jiu).
This library is working in progress. Any suggestion are welcome on API design.
toml
[dependencies]
erguotou = "*"
Demo code
```rust use std::collections::BTreeMap; use hyper::client::Client; use rustc_serialize::json::ToJson; use erguotou::json::{JsonParam, JsonRPC};
// the data you are going to send // it can be anything of rustcserialize::json::ToJson let mut data = BTreeMap::new(); data.insert("hello".toowned(), "world".to_owned());
// the hyper client let client = Client::new();
// construct JsonParam from data let mut jsonparam: JsonParam = JsonParam::from(&data as &ToJson); // the hyper request builder calls, no need for body() and header() // a single json() call to fill them all let mut resp = client.post("http://localhost:8080") .json(&mut jsonparam).send().unwrap();
```
Demo code
```rust use std::collections::BTreeMap; use hyper::client::Client; use erguotou::form::{ToForm, FormParam, FormBody};
// the data you are going to send // it can be anything implements ToForm. // By default, we have BTreeMap built-in for ToForm let mut data = BTreeMap::new(); data.insert("name".toowned(), "Ning Sun".toowned());
// the hyper client let client = Client::new();
// construct JsonParam from data let mut formdata: FormParam = FormParam::from(&data as &ToForm); // the hyper request builder calls, no need for body() and header() // a single form() call to fill them all let mut resp = client.post("http://localhost:8080") .form(&mut formdata).send().unwrap();
```
MIT