ci-badge ![crates.io version]

booru-rs

An async Booru client for Rust

Overview

The client currently supports: - [x] Gelbooru - [ ] Safebooru - [x] Danbooru - [ ] Konachan - [ ] R34 - [ ] 3DBooru - [ ] More... ?

Example

rust let posts = GelbooruClient::builder() .tag("kafuu_chino") .tag("2girls") .rating(GelbooruRating::General) .sort(GelbooruSort::Score) .limit(5) .random(true) .blacklist_tag(GelbooruRating::Explicit) .get() .await .expect("There was an error retrieving posts from the API");