13 releases
0.2.5 | Nov 29, 2020 |
---|---|
0.2.4 | Nov 28, 2020 |
0.1.6 | Nov 26, 2020 |
#62 in #reqwest
38 downloads per month
78KB
2K
SLoC
nanowrimo
An easy-to use NanoWrimo API client for Rust
- Built on reqwest
- Supports both anonymous and logged-in access
Example
This example uses Tokio
[dependencies]
nanowrimo = "0.2"
tokio = { version = "0.2", features = ["full"] }
use nanowrimo::{NanoClient};
#[tokio::main]
async fn main() {
let client = NanoClient::new_user("username", env!("NANO_PASSWORD"))
.await
.expect("Couldn't create logged in NanoClient");
let user = client.current_user()
.await
.expect("Couldn't get current user")
.data;
let data = &user.data;
println!("User ID: {}", user.id())
println!("User Bio: {}", data.bio);
println!("Avatar: {}", data.avatar);
}
License
Licensed under either of
- Apache License, Version 2.0 (LICENSE-APACHE or http://apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
Dependencies
~4–9MB
~195K SLoC