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 c00c4f7b98
Update packages and crate version
4 months ago
.github/workflows Add tests with GITHUB ACTIONS 3 years ago
.idea First version with search api 3 years ago
src Fix default API endpoint 4 months ago
.gitignore First version with search api 3 years ago
Cargo.lock Update packages and crate version 4 months ago
Cargo.toml Update packages and crate version 4 months 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