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

#114 in #env

Download history 3/week @ 2024-02-19 10/week @ 2024-02-26 3/week @ 2024-03-11 121/week @ 2024-04-01

124 downloads per month

Custom license

48KB
1K SLoC

furbooru

built with nix Rust MIT License Crates.io docs

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–23MB
~358K SLoC