A Rust wrapper for the AnimeThemes.moe api
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trivernis 34d5d35953
Fix synopsis being optional
Signed-off-by: trivernis <trivernis@protonmail.com>
2 years ago
.github/workflows Add tests with GITHUB ACTIONS 3 years ago
.idea First version with search api 3 years ago
src Fix synopsis being optional 2 years ago
.gitignore First version with search api 3 years ago
Cargo.lock Fix synopsis being optional 2 years ago
Cargo.toml Fix mapping of notes 2 years ago
LICENSE First version with search api 3 years ago
README.md First version with search api 3 years ago

README.md

AnimeThemes Rust API

This crate provides an API Wrapper for AnimeThemes.moe.

Usage

use animethemes_rs::client::AnimeThemesClient;

let client = AnimeThemesClient::default();
let response = client.search("Vivy", &[], &[]).await?;

assert!(response.anime.is_some());
assert!(response.videos.is_some());

License

Apache-2.0