pixiv-rs

Crates.iopixiv-rs
lib.rspixiv-rs
version0.1.0
sourcesrc
created_at2021-07-25 13:36:26.364015
updated_at2021-07-25 13:36:26.364015
descriptionWrapper for the inofficial pixiv ajax api
homepage
repositoryhttps://github.com/Trivernis/pixiv-rs
max_upload_size
id427070
size19,332
Julius Riegel (Trivernis)

documentation

README

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

Commit count: 1

cargo fmt