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
Signed-off-by: trivernis <trivernis@protonmail.com> |
3 years ago | |
---|---|---|
src | 3 years ago | |
tests | 3 years ago | |
.gitignore | 3 years ago | |
Cargo.toml | 3 years ago | |
LICENSE | 3 years ago | |
README.md | 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