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.

364 B

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