Crates.io | pixiv-rs |
lib.rs | pixiv-rs |
version | 0.1.0 |
source | src |
created_at | 2021-07-25 13:36:26.364015 |
updated_at | 2021-07-25 13:36:26.364015 |
description | Wrapper for the inofficial pixiv ajax api |
homepage | |
repository | https://github.com/Trivernis/pixiv-rs |
max_upload_size | |
id | 427070 |
size | 19,332 |
This crate allows calls to the pixiv internal ajax api to retrieve information about posts.
use pixiv_rs::client::PixivClient;
async fn main() {
let illustration = client.illustration("43663273").await.unwrap();
for tag in illustration.tags.tags {
println!("{}", tag.tag);
}
}
Apache-2.0