Skip to content

George-Miao/bangumi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Bangumi

This is a Rust library for the Bangumi.moe API based on rustified.

Usage

# #[tokio::test] async fn doc_test_1() -> Result<(), Box<dyn std::error::Error>>{ use bangumi::*;
use bangumi::{endpoints::GetCurrent, Endpoint};

let client = bangumi::client();
let result: Vec<WithId<Bangumi>> = GetCurrent.exec(&client).await?.parse()?;
# Ok(()) }

With builder

# #[tokio::test] async fn doc_test_2() -> Result<(), Box<dyn std::error::Error>>{ use bangumi::*;
use bangumi::{endpoints::SearchTags, Endpoint};

let client = bangumi::client();
let result: SearchResult<Vec<WithId<Tag>>> =
    SearchTags::builder()
        .name("魔法少女")
        .keywords(false)
        .tag_type(TagType::Bangumi)
        .build()
        .exec(&client)
        .await?
        .parse()?;
# Ok(()) }

For all endpoints, see endpoints.

About

A bangumi.moe client crate

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages