A library for the Pixiv API.
Project description
A documented, idiomatic, and tested wrapper library around Pixiv’s App API.
Supports Python versions 3.6+.
Install with:
$ pip install pixiv-api
Quickstart
To start making requests to the Pixiv API, instantiate a client object.
from pixivapi import Client
client = Client()
The client can be authenticated to Pixiv’s API in multiple ways. One is by logging in with a username and password:
client.login("username", "password")
And another is with a refresh token.
client.authenticate("refresh_token")
Once authenticated, a refresh token can be saved for future authorizations.
refresh_token = client.refresh_token
After authenticating, the client can begin making requests to all of the Pixiv endpoints. For example, the following code block downloads an image from Pixiv.
from pathlib import Path
from pixivapi import Size
illustration = client.fetch_illustration(75523989)
illustration.download(
directory=Path.home() / "my_pixiv_images",
size=Size.ORIGINAL,
)
And the next code block downloads all illustrations of an artist.
from pathlib import Path
from pixivapi import Size
artist_id = 2188232
directory = Path.home() / "wlop"
response = client.fetch_user_illustrations(artist_id)
while True:
for illust in response["illustrations"]:
illust.download(directory=directory, size=Size.ORIGINAL)
if not response["next"]:
break
response = client.fetch_user_illustrations(
artist_id,
offset=response["next"],
)
Read the full documentation at https://pixiv-api.readthedocs.io.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pixiv-api-1.0.0.tar.gz.
File metadata
- Download URL: pixiv-api-1.0.0.tar.gz
- Upload date:
- Size: 18.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.8.6 Linux/5.10.1-1-default
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c180ae5ba7d6e22cecb91608e0bad5c33278ac7ab078cb1b3c76414f00ffb073
|
|
| MD5 |
2912ba4fcf0b005c38b7a5dbd86a5856
|
|
| BLAKE2b-256 |
86adc8a9c806ae8ada2f585c93b5b0d3cd8d979a71bd6316ca54d82afef925c5
|
File details
Details for the file pixiv_api-1.0.0-py3-none-any.whl.
File metadata
- Download URL: pixiv_api-1.0.0-py3-none-any.whl
- Upload date:
- Size: 18.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.8.6 Linux/5.10.1-1-default
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ce0765883f816fd575127e007c2645e5ada92084549500931b22565c31b2191
|
|
| MD5 |
06cd7293a12fae1b9fd6fb5f47a25475
|
|
| BLAKE2b-256 |
eaffac8a445008ea1ed0c12e6016bb4448945388c47a45f9573e8863d7004661
|