Wrapper for Shikimori API
Project description
shikimori_api
Unofficial wrapper for the Shikimori API
Installation
This package requires Python 3.6 or later
pip install shikimori_api
Dependencies
Usage
from shikimori_api import Shikimori
session = Shikimori()
api = session.get_api()
api.animes.GET(search='KonoSuba', kind='movie') # GET /api/animes?search=KonoSuba&kind=movie
api.animes(1).GET() # GET /api/animes/1
api.animes(1).screenshots.GET() # GET /api/animes/1/screenshots
OAuth
import json
def token_saver(token: dict):
with open('token.json', 'w') as f:
f.write(json.dumps(token))
session = Shikimori('APP_NAME', client_id='CLIENT_ID', client_secret='CLIENT_SECRET', token_saver=token_saver)
print(session.get_auth_url())
code = input('Authorization Code: ')
session.fetch_token(code)
After receiving and saving token, you can load it from file:
with open('token.json') as f:
token = json.load(f)
session = Shikimori('APP_NAME', client_id='CLIENT_ID', client_secret='CLIENT_SECRET',
token=token, token_saver=token_saver)
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
shikimori_api-1.0.1.tar.gz
(3.7 kB
view details)
Built Distribution
File details
Details for the file shikimori_api-1.0.1.tar.gz
.
File metadata
- Download URL: shikimori_api-1.0.1.tar.gz
- Upload date:
- Size: 3.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 91d11b0ca793b693261ff8479a799886ff777c1a2526634505bf3834430c9f7a |
|
MD5 | fca8eb29fa1b1a349a32eb20249c6519 |
|
BLAKE2b-256 | 082b544ea71a9c2ae5aa317684f6c4f56428c5153f99b18fbfe17c214241ac05 |
File details
Details for the file shikimori_api-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: shikimori_api-1.0.1-py3-none-any.whl
- Upload date:
- Size: 4.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 441c36c6500f924d6fba98b24135325e65141a9f400c01eaf7f9e3388692419c |
|
MD5 | eaecb7e78a543365de35024502eca0e0 |
|
BLAKE2b-256 | 27b16e4f6045131c281fca6f006ddef50982122818f0c764e9aa6d654ab42a5e |