3 releases (breaking)

0.3.0 Apr 6, 2025
0.2.0 Oct 25, 2024
0.1.0 Oct 15, 2024

#3 in #bangumi

Download history 1/week @ 2025-04-26 1/week @ 2025-05-03 10/week @ 2025-05-10 11/week @ 2025-05-17

149 downloads per month

MIT license

67KB
1K SLoC

bgmtv

bgmtv is an API wrapper for bangumi.tv based on reqwest.

Usage

use bgmtv::prelude::*;

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    let client = Client::builder()
        .user_agent("duskmoon/bgmtv/0.1.0 (https://github.com/duskmoon314/bgmtv-rs)")
        .build()?;

    let subject = client.get_subject(3559).await?;

    assert_eq!(subject.name, "とある魔術の禁書目録");

    Ok(())
}

Dependencies

~7–23MB
~324K SLoC