1 unstable release

0.1.0 Jul 25, 2021

#8 in #pixiv

Download history 17/week @ 2024-09-22 4/week @ 2024-09-29

52 downloads per month
Used in 2 crates

Apache-2.0

8KB
129 lines

Pixiv for Rust

This crate allows calls to the pixiv internal ajax api to retrieve information about posts.

Example

use pixiv_rs::client::PixivClient;

async fn main() {
    let illustration = client.illustration("43663273").await.unwrap();
    for tag in illustration.tags.tags {
        println!("{}", tag.tag);
    }
}

License

Apache-2.0

Dependencies

~4–17MB
~251K SLoC