Crates.io | urban-rs |
lib.rs | urban-rs |
version | 0.1.1 |
source | src |
created_at | 2020-09-17 23:32:56.657016 |
updated_at | 2020-09-18 14:08:09.290178 |
description | An API library to interract with Urban Dictionary. |
homepage | |
repository | https://github.com/Aurora2500/urban-rs |
max_upload_size | |
id | 289947 |
size | 19,671 |
An async API to interact with Urban Dictionary to get definitions from it.
The API Uses reqwest for fetching definitions off of the internet
There are three ways to get a definition:
use std::io;
use tokio::runtime::Runtime;
println!("What word do you want defined?");
let mut word = String::new();
io::stdin()
.read_line(&mut word)
.expect("Failed to read line");
// A reqwest client is needed to use the urban API
let client = reqwest::Client::new();
// The function is async. Thus it needs an executor to be ran from inside a non-async
// function.
if let Ok(result) = Runtime::new()
.expect("Failed to create tokio runtime")
.block_on(urban_rs::fetch_definition(&client, &word))
{
// the result is a vector of definitions. If it has no length then there were no words
// found
if result.is_empty() {
println!("No words were found");
return;
}
let first_result = &result[0];
println!("Definition for {}:\n{}", first_result.word(), first_result.definition());
} else {
println!("An error has occured while fetching the definition");
}
This example asks a user for a word and prints out its definition
To start using urban-rs. Add it to your cargo.toml
urban-rs = "0.1.0"
Urban-rs uses reqwest
to fetch definitions trough the internet asynchronously.
This means that you will need to use a reqwest::Client
to give to the functions.
The reasons for the user to provide a client is so that it can be reused across multiple function calls.
Or even across different APIs that all need a reqwest client.
Aditionally, since the functions are asynchronous, they won't directly return a result.
But instead will return a Future that needs to be executed.
Using futures
's executors won't work. As reqwest requires tokios runtime to be executed.
Thus the futures returned from the functions need to be called trough tokio
's Runtime
and its executors.
use tokio::runtime::Runtime;
// A reqwest client is needed so that the Urban API can make web API calls
let client = reqwest::Client::new();
// As stated before. The API uses async functions which return futures. These need to be executed trough
// tokio's Runtime.
if let Ok(result) = Runtime::new()
.expect("Failed to create tokio runtime")
.block_on(urban_rs::fetch_random(&client))
{
// the result is a vector of definitions. If it has no length then there were no words
// found
if result.is_empty() {
println!("No words were found");
return;
}
let first_result = &result[0];
println!("Definition of the day: {}!\n{}", first_result.word(), first_result.definition());
} else {
println!("An error has occured while fetching the definition");
}