Skip to main content

Python wrapper for shikimori API

Project description

pyshikiapi

Python wrapper for shikimori API

Install

pip install pyshikiapi

Usage

from pyshikiapi import API

app_name = 'YOUR_APP_NAME'
client_id = 'YOUR_APP_CLIENT_ID'
client_secret = 'YOUR_APP_SECRET'

api = API(app_name, client_id, client_secret)
print('Please visit the link and copy authorization token:', api.authorization_url)
code = input('The token: ')
api.fetch_token(code)

# Now you can use the api object to send requests

If you want to save the token to use it later, pass the token_update_callback argument to API:

def token_file_saver(token):  # A function which accepts 1 dict-like argument
    with open('token.json', 'w') as f:
        json.dump(token, f)

api = API(app_name, client_id, client_secret, token_update_callback=token_file_saver)

Next time you start, load the token:

with open('token.json') as f:
    token = json.load(f)
api = API(app_name, client_id, client_secret, token)

Examples

api.animes.GET(page=2, limit=10)  # will send GET-request animes?page=2&limit=10
api.animes(5).roles.GET()  # will send GET-request animes/5/roles

comment = {'body': 'hello', 'commentable_type': 'User', 'commentable_id': 4193}
api.comments.POST(comment=comment, broadcast=False)

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

pyshikiapi-1.0.0.tar.gz (2.9 kB view hashes)

Uploaded Source

Built Distribution

pyshikiapi-1.0.0-py3-none-any.whl (7.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page