2 releases (1 stable)
1.0.0 | Jun 23, 2022 |
---|---|
0.1.0 | Jun 22, 2022 |
#2 in #animal
23KB
269 lines
animality.rs
A simple Rust API wrapper that generates images & facts of any animal.
Installation
Add this to your Cargo.toml file's dependencies:
animality = "1.0.0"
Blocking Request
extern crate animality;
use animality::{Animality, Animal};
fn main() {
let client = Animality::new("your token here");
// request with the `Animal` enum
let dog_image = client.image(Animal::Dog).unwrap();
let dog_fact = client.fact(Animal::Dog).unwrap();
// request from a string (case-insensitive)
let cat: Animal = "cat".parse().unwrap();
let cat_image = client.image(cat).unwrap();
let cat_fact = client.fact(cat).unwrap();
}
Async Request
extern crate animality;
extern crate tokio;
use animality::{Animality, Animal, RequestError};
#[tokio::main]
async fn main() -> Result<(), RequestError> {
let client = Animality::new("your token here");
// request with the `Animal` enum
let dog_image = client.image_async(Animal::Dog).await?;
let dog_fact = client.fact_async(Animal::Dog).await?;
// request from a string (case-insensitive)
let cat: Animal = "cat".parse().unwrap();
let cat_image = client.image_async(cat).await?;
let cat_fact = client.fact_async(cat).await?;
Ok(())
}
Dependencies
~0.6–9.5MB
~109K SLoC