1 unstable release

0.1.0 Jul 25, 2021

#832 in Images

36 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–18MB
~286K SLoC