### Install PyShiki Library Source: https://github.com/olegwock/pyshiki/blob/master/README.md Instructions for installing the PyShiki library using pip on Linux and Windows systems. This is the initial step before using the library. ```bash # Linux: sudo pip3 install pyshiki # Windows: pip3 install pyshiki ``` -------------------------------- ### PyShiki API Usage Examples Source: https://github.com/olegwock/pyshiki/blob/master/README.md Demonstrates how to use the PyShiki library to interact with the Shikimori API. Includes examples for searching animes by name and posting new device information. ```python import pyshiki from pprint import pprint api = pyshiki.Api("YOUR_NICKNAME", "YOUR_PASSWORD") # GET http://shikimori.org/api/animes/search?q=Lucky+Star ls = api.animes("search", q="Lucky Star").get() pprint(ls) # POST http://shikimori.org/api/devices # { # "device": { # "user_id": 23456813, # "token": "test", # "platform": "ios", # "name": "test" # } # } dev = api.devices(device={ "user_id": 23456813, "token": "test", "platform": "ios", "name": "test" }).post() pprint(dev) ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.