Python client for Jikan.moe, MyAnimeList unofficial API built on good intentions.
Project description
Python client for Jikan.moe, simplified with amplified in mind.
The motivation is simplified the api call, customizable behaviour, and user should have no worries with ratelimit.
Jikan4snek simulating requests with cache and apply coroutine delay if ratelimit was hit or it's expired.
Features
Jikan4snek combines in-disk cache and ratelimit hit to simulate the requests.
- Has own ratelimit flow
- Customizable behaviour
- Simplified, nested method call
- Covers 80% of the v4 Jikan endpoints
- Easy to use, check your intelisense
Installation
pip install jikan4snek
Or build from source:
clone this repo and run
python setup.py install
Prerequisites
NOTE: Python 3.7 or above |
Usage
Should be run in async context, also follow the nested call after get or search method.
import asyncio
from jikan4snek import Jikan4SNEK, dump
async def main():
jikan = Jikan4SNEK()
anime = await jikan.get(18679).anime()
print(anime) ## this is <class 'dict'>
print(dump(anime)) ## this is <class 'str'>
asyncio.run(main())
Constructors
You can apply your own instance of Jikan, user-agent, sqlite backend, cache expiration, and debug.
The default:
import asyncio
from jikan4snek import Jikan4SNEK
async def main():
jikan = Jikan4SNEK(
api="https://api.jikan.moe/v4",
ua={
"User-Agent": "jikan4snek/current_version",
"From": "hey@scathach.id",
},
sqlite_backend="jikan4snek_cache/jikan4snek",
expire_cache=60, ## 1 hour
debug=False ## debug mode, default is False
)
some_anime = await jikan.search("naruto").anime()
## do with some_anime
asyncio.run(main())
Get
jikan.get()
used from based on id.
await jikan.get(18679, entry="characters").anime()
await jikan.get(18679, entry="pictures").anime()
See more
Anime
await jikan.get(18679, entry="characters").anime()
await jikan.get(18679, entry="pictures").anime()
Manga
await jikan.get(58391).manga()
await jikan.get(58391, entry="characters").manga()
Characters
await jikan.get(83799).characters()
await jikan.get(83799, entry="voices").characters()
Clubs
await jikan.get(1).clubs()
await jikan.get(1, entry="members").clubs()
People
await jikan.get(1).people()
await jikan.get(1, entry="pictures").people()
Producers
await jikan.get(1).producers()
await jikan.get(1, entry="external").producers()
Random
await jikan.get(False, entry="anime").random()
await jikan.get(False, entry="manga").random()
Users
await jikan.get("sinkaroid").users()
await jikan.get("sinkaroid", entry="history").users()
Search
jikan.search()
used from based on query search.
await jikan.search("naruto").anime()
await jikan.search("naruto", limit=10, page=2).anime()
See more
Anime
await jikan.search("naruto").anime()
await jikan.search("naruto", limit=10, page=2).anime()
Manga
await jikan.search("naruto").manga()
await jikan.search("naruto", limit=10, page=2).manga()
Characters
await jikan.search("uchiha").characters()
await jikan.search("uchiha", limit=10, page=1).characters()
Clubs
await jikan.search("naruto").clubs()
await jikan.search("naruto", limit=10, page=1).clubs()
People
await jikan.search("tanaka rie").people()
await jikan.search("tanaka", limit=10, page=1).people()
Producers
await jikan.search("madhouse").producers()
await jikan.search("japan", limit=10, page=1).producers()
Magazines
await jikan.search("jump").magazines()
await jikan.search("jump", limit=10, page=1).magazines()
Users
await jikan.search("sinkaroid").users()
await jikan.search("sin", limit=10, page=1).users()
Bulk request
If you using asyncio.gather(*[jikan.get("..").anime()])
sadly, It will broke the base api hit, Just do it like usual, enable debug, and snek will handle the ratelimit for you. For example:
import asyncio
import jikan4snek
some_bunch_of_anime = [
44511, 50602, 50172, 49918, 49596, 41467,
48316, 49709, 42962, 47917, 49891, 50425,
50710, 49784, 51098, 49979, 52046, 52193,
51128, 48542, 49828, 51403, 50205, 50528,
50590, 51212, 30455, 50923, 50348, 51680]
async def main():
Jikan = jikan4snek.Jikan4SNEK(debug=True)
for i in some_bunch_of_anime:
res = await Jikan.get(i).anime()
print("Anime:", res['data']['title'])
asyncio.run(main())
Running tests
Check workflows and the whole /test
folder.
Debug
Enable debug. Default is False. Use this if jikan4snek request is not working as expected.
jikan = Jikan4SNEK(debug=True)
2022-12-20 21:02:06,435 | INFO | request:fetch | Not hitting API, cache is available
2022-12-20 21:02:06,435 | INFO | request:fetch | is_cache:True | status_code:200 | url:https://api.jikan.moe/v4/anime/44511 | took:0.02 seconds
2022-12-20 21:02:06,435 | INFO | main:memek | Anime: Chainsaw Man
2022-12-20 21:02:06,435 | INFO | request:fetch | Not hitting API, cache is available
2022-12-20 21:02:06,435 | INFO | request:fetch | is_cache:True | status_code:200 | url:https://api.jikan.moe/v4/anime/50602 | took:0.0 seconds
2022-12-20 21:02:06,435 | INFO | main:memek | Anime: Spy x Family Part 2
2022-12-20 21:02:06,435 | INFO | request:fetch | Not hitting API, cache is available
2022-12-20 21:02:06,435 | INFO | request:fetch | is_cache:True | status_code:200 | url:https://api.jikan.moe/v4/anime/50172 | took:0.0 seconds
2022-12-20 21:02:06,435 | INFO | main:memek | Anime: Mob Psycho 100 III
2022-12-20 21:02:07,997 | INFO | request:fetch | First conditions of request, API hit 1
2022-12-20 21:02:07,997 | INFO | request:fetch | is_cache:False | status_code:200 | url:https://api.jikan.moe/v4/anime/49918 | took:1.56 seconds
2022-12-20 21:02:07,997 | INFO | main:memek | Anime: Boku no Hero Academia 6th Season
2022-12-20 21:02:09,560 | INFO | request:fetch | Second conditions of request, API hit 2
2022-12-20 21:02:09,576 | INFO | request:fetch | is_cache:False | status_code:200 | url:https://api.jikan.moe/v4/anime/49596 | took:0.016 seconds
2022-12-20 21:02:09,576 | INFO | main:memek | Anime: Blue Lock
2022-12-20 21:02:11,122 | INFO | request:fetch | Third conditions of request, apply sleep for 1 seconds..
2022-12-20 21:02:12,123 | INFO | request:fetch | Third should back to first condtions, API hit 1
2022-12-20 21:02:12,154 | INFO | request:fetch | is_cache:False | status_code:200 | url:https://api.jikan.moe/v4/anime/41467 | took:0.031 seconds
2022-12-20 21:02:12,154 | INFO | main:memek | Anime: Bleach: Sennen Kessen-hen
2022-12-20 21:02:13,716 | INFO | request:fetch | Second conditions of request, API hit 2
2022-12-20 21:02:13,732 | INFO | request:fetch | is_cache:False | status_code:200 | url:https://api.jikan.moe/v4/anime/48316 | took:0.016 seconds
2022-12-20 21:02:13,732 | INFO | main:memek | Anime: Kage no Jitsuryokusha ni Naritakute!
2022-12-20 21:02:15,247 | INFO | request:fetch | Third conditions of request, apply sleep for 1 seconds..
2022-12-20 21:02:16,247 | INFO | request:fetch | Third should back to first condtions, API hit 1
Jikan4snek.dump
Short hand of json.dump() If you are phobia with arbitrary bad indentation of json. Use Jikan4snek.dump()
to dump them, It's definitely str, not dictionaries, just in case for reading object to save your time.
Documentation
https://scathachgrip.github.io/jikan4snek
Acknowledgements
I hope you have found this project useful. All the major credit really goes to the Jikan and MyAnimeList itself.
Pronunciation
Jikan is jikan.moe. then Snek is snek you know exactly what it's mean.
Legal
This tool can be freely copied, modified, altered, distributed without any attribution whatsoever. However, if you feel like this tool deserves an attribution, mention it. It won't hurt anybody.
Licence: WTF.
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
File details
Details for the file jikan4snek-4.2.1.tar.gz
.
File metadata
- Download URL: jikan4snek-4.2.1.tar.gz
- Upload date:
- Size: 15.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 878d500715f15d560e05aab7d180b18b41ff3873294fb883997f6fc294aa5ad6 |
|
MD5 | 385349c943a41d4302d7af3434f18327 |
|
BLAKE2b-256 | e5809a571e2cfc130a5aa30df51a5cb5a97c092780895621724034659dea3bfe |