Rust wrapper for pixiv ajax calls
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.
trivernis 7531bb475c
Add client and function to get illustration data
Signed-off-by: trivernis <trivernis@protonmail.com>
3 years ago
src Add client and function to get illustration data 3 years ago
tests Add client and function to get illustration data 3 years ago
.gitignore Add client and function to get illustration data 3 years ago
Cargo.toml Add client and function to get illustration data 3 years ago
LICENSE Add client and function to get illustration data 3 years ago
README.md Add client and function to get illustration data 3 years ago

README.md

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