Get your Pixiv token (for running upbit/pixivpy)
Project description
gppt
: get-pixivpy-token
- Get your Pixiv token (for running upbit/pixivpy)
- Refine pixiv_auth.py + its fork
Install
pip install gppt
Enable Proxy
Set ALL_PROXY
or HTTPS_PROXY
to your environment variables.
Run
Retrieved token can be used like below:
from pixivpy3 import AppPixivAPI
REFRESH_TOKEN = "***" # or, REFRESH_TOKEN = res.refresh_token
aapi = AppPixivAPI()
aapi.auth(refresh_token=REFRESH_TOKEN)
...
From Docker
$ docker run --rm -it ghcr.io/eggplants/get-pixivpy-token lh -u <id> -p <pw>
[+]: Success!
access_token: ***
refresh_token: ***
expires_in: 3600
From CLI
- Note: In advance, please setup google-chrome-stable + selenium + webdriver
# with browser
$ gppt login
[!]: Chrome browser will be launched. Please login.
(Log in to Pixiv from the login screen that starts up.)
[+]: Success!
access_token: ***
refresh_token: ***
expires_in: 3600
...
# with headless browser
$ gppt login-headless -u <id> -p <pw>
[!]: Chrome browser will be launched. Please login.
[+]: Success!
access_token: ***
refresh_token: ***
expires_in: 3600
From Library
- Note: In advance, please setup google-chrome-stable + selenium + webdriver
from gppt import GetPixivToken
g = GetPixivToken()
res = g.login(headless=True, username="...", password="...")
res.response
returns:
{
"access_token": "***",
"expires_in": 3600,
"refresh_token": "***",
"scope": "",
"token_type": "bearer",
"user": {
"account": "***",
"id": "***",
"is_mail_authorized": <bool>,
"is_premium": <bool>,
"mail_address": "***@***",
"name": "***",
"profile_image_urls": {
"px_16x16": "https://s.pximg.net/common/images/no_profile_ss.png",
"px_170x170": "https://s.pximg.net/common/images/no_profile.png",
"px_50x50": "https://s.pximg.net/common/images/no_profile_s.png"
},
"require_policy_agreement": <bool>,
"x_restrict": 2
}
}
Help
$ gppt -h
usage: gppt [-h]
{login,l,login-interactive,li,login-headless,lh,refresh,r} ...
Get your Pixiv token (for running upbit/pixivpy)
positional arguments:
{login,l,login-interactive,li,login-headless,lh,refresh,r}
login (l) retrieving auth token
login-interactive (li)
`login` in interactive mode
login-headless (lh)
`login` in headless mode
refresh (r) refresh tokens
optional arguments:
-h, --help show this help message and exit
$ gppt l -h
usage: gppt login [-h] [-u USERNAME] [-p PASSWORD] [-j]
optional arguments:
-h, --help show this help message and exit
-u USERNAME, --username USERNAME
your E-mail address / pixiv ID
-p PASSWORD, --password PASSWORD
your current pixiv password
-j, --json output response as json
$ gppt li -h
usage: gppt login-interactive [-h] [-j]
optional arguments:
-h, --help show this help message and exit
-j, --json output response as json
$ gppt lh -h
usage: gppt login-headless [-h] -u USERNAME -p PASSWORD [-j]
optional arguments:
-h, --help show this help message and exit
-u USERNAME, --username USERNAME
your E-mail address / pixiv ID
-p PASSWORD, --password PASSWORD
your current pixiv password
-j, --json output response as json
$ gppt r -h
usage: gppt refresh [-h] [-j] refresh_token
positional arguments:
refresh_token
optional arguments:
-h, --help show this help message and exit
-j, --json output response as json
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
gppt-3.0.0.tar.gz
(9.9 kB
view details)
Built Distribution
gppt-3.0.0-py3-none-any.whl
(10.2 kB
view details)
File details
Details for the file gppt-3.0.0.tar.gz
.
File metadata
- Download URL: gppt-3.0.0.tar.gz
- Upload date:
- Size: 9.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b19d2813143324541de1baac21b74d54cdc5482cf83adbf2d55e99334049281e |
|
MD5 | f2ce6ff050a8898bf75fa0ca31c431db |
|
BLAKE2b-256 | 03317f8a6305fc1e3173979fafe58a62cf54ecfa7de9da9520219ccc45c170da |
File details
Details for the file gppt-3.0.0-py3-none-any.whl
.
File metadata
- Download URL: gppt-3.0.0-py3-none-any.whl
- Upload date:
- Size: 10.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 706a62e3cc5503d554be26c8c72301e8da11994cd2a3c36db61cb428204bcc81 |
|
MD5 | c3f1aa6fee99ef6b13a5eb8992e16280 |
|
BLAKE2b-256 | 418dbc47569a0bb055de620b824d9d8824f6199ddf1a6444b9375d4e6f695e4c |