7 unstable releases
0.4.0 | Sep 7, 2021 |
---|---|
0.3.3 | Jul 5, 2020 |
0.2.0 | Jun 13, 2020 |
0.1.0 | Jun 13, 2020 |
#120 in #env
41 downloads per month
48KB
1K
SLoC
furbooru
A Furbooru and Derpibooru client written in Rust. The APIs for these two sites are near identical, so this crate can work with both; however it is optimized for Furbooru. Any time Furbooru diverges from Derpibooru, this crate will follow the Furbooru changes first.
Usage is simple:
let user_agent = format!(
"{}/{} ({}, +{})",
env!("CARGO_PKG_NAME"),
env!("CARGO_PKG_VERSION"),
std::env::var("API_USERNAME").unwrap(),
env!("CARGO_PKG_REPOSITORY"),
);
let cli = furbooru::Client::new(
user_agent,
std::env::var("API_TOKEN").unwrap(),
)?
Set the environment variables API_USERNAME
and API_TOKEN
to your
Furbooru/Derpibooru username and API token respectively. Adding the username
associated with your bot to each request can help the booru staff when your bot
does unwanted things like violating rate limits.
See the examples for more ideas.
Dependencies
~7–21MB
~341K SLoC