Giter Site home page Giter Site logo

jikan-rest's Introduction

Jikan

Jikan - Unofficial MyAnimeList.net REST API

Average time to resolve an issue Percentage of issues still open stable Discord Server

Jikan is a REST API for MyAnimeList.net. It scrapes the website to satisfy the need for an API - which MyAnimeList lacks.

The raison d'être of Jikan is to assist developers easily get the data they need for their apps and projects without having to depend on the lackluster official API, unstable APIs, or sidetracking their projects to develop parsers.

The word Jikan literally translates to Time in Japanese (時間). And that's what this API saves you of. ;)

Notice: Jikan does not support authenticated requests. You can not update your lists.

Index

Getting Started

Requirements

🐳 Docker

If you don't want to install it yourself, there are dockerized options available:

01. Installation Prerequisites

01A. Linux

This is specifically for Ubuntu, but other distributions should work similarly.

  1. Install requirements:
  • Add PHP related packages: sudo add-apt-repository -y ppa:ondrej/php
    • If add-apt-repository is not installed, you can install it by doing sudo apt install python-software-properties or sudo apt install software-properties-common
  • sudo apt update && sudo apt upgrade
  • Install requirements: sudo apt install curl git php redis unzip
  • Verify that PHP 7.1-7.3 is installed: php -v (PHP 7.4 is not currently supported)
  • Install the corresponding php-xml and php-mbstring packages for your version, e.g:
    • PHP 7.1: sudo apt install php7.1-xml php7.1-mbstring
    • PHP 7.3: sudo apt install php7.3-xml php7.3-mbstring
  • Install composer: curl -sS https://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin --filename=composer
  1. Start the redis server: sudo service redis start

01B. Mac

  1. Install brew
  2. Install requirements: brew install php composer redis
  3. Start the redis server: brew services start redis

02. Installation

  1. git clone https://github.com/jikan-me/jikan-rest.git
  2. cd jikan-rest
  3. cp .env.dist .env
  4. composer install (Make sure Jikan's directory has write permissions)

03. Configuration

You're able to configure Jikan through the .env file. A few kernel commands are available from the project directory by running the artisan file.

The first thing you need to do is generate an APP_KEY.

  1. php artisan key:generate
  2. Configure how Jikan caches
  3. Configure how Jikan handles expired cache

04. Ignition

php artisan serve --port=8080 or php -S localhost:8000 -t public

Jikan is now hosted on http://localhost:8000/v3/

Alternatively, host it on Apache (or Nginx)

Create a virtual host and point it to /public. Jikan supports Apache out of the box, you just need to create a virtual host and point it to /public, and enable the rewrite module for .htaccess (sudo a2enmod rewrite), and configure /etc/apache/apache2.conf by setting AllowOverride None to AllowOverride All for the /var/www directory.

ℹ️ If you wish to configure it for Nginx or anything else, you'll have to port the rewrite rules located at public/.htaccess

05. Configuring how Jikan Caches (optional)

Jikan caches on file by default in /storage/framework/cache. So even if you don't change the caching method, Jikan will work out of the box.

However, you can configure Jikan to cache on Redis instead: php artisan cache:driver redis

Note: If you're currently running Jikan, you're required to stop it before running the above command.

06. Configuring how Jikan handles expired cache (optional)

Jikan handles cache in the legacy manner out of the box. This method was used previously to update cache.

06A. Cache Method: Legacy

When a cache expires, it gets deleted. So if you make a request that has an expired cache, your request will take longer as Jikan has to fetch and parse the new data from MyAnimeList again.

06B. Cache Method: Queue

This is a newly introduced caching method to the API, it's what the public API runs on as well. It requires some further setup.

When a cache expires, it does not get deleted. Instead, if you make a request that has an expired cache, a job will be dispatched to the queue which handles updating the cache in the background. Therefore, the request will keep on providing stale cache until the job is complete and the cache is replaced with fresh data.

This method provides zero delay, and is highly recommended if you have immense traffic coming your way.

ℹ️ Note: If you're currently running Jikan, you're required to stop it before running the above command. You're also required to clear any cache you've stored as well as anything on the Redis server.

  1. php artisan cache:method queue

Next, you need to make sure that there's a service looking after the queue. This can be manually done by running a process through php artisan queue:work --queue=high,low. You can set the command to run on cron, nohup, etc.

But a recommended way is to install Supervisor and have it handle the queue automatically.

ℹ️ Note: --queue=high,low; Jikan stores two types of queues; high priority and low priority. This depends on the type of request. You can check which request is considered to be high priority in the JikanResponseHandler.php middleware in the HIGH_PRIORITY_QUEUE array.

ℹ️ Note 2: Not all requests are queuable. Some are handled the legacy way. You can find out which ones in the JikanResponseHandler.php middleware in the NON_QUEUEABLE array.

This reason for this is quite simple. User related requests such as anime/manga list can be frequently updated. They're cached by default for 5 minutes (you can change this in .env). But if they were to get queued for a cache update, it would take longer than 5 minutes because the update job would have to wait in line. So it skips the queue and is automatically updated on the request. This does mean a slight delay in fetching and parsing the fresh data from MyAnimeList.

ℹ️ Note 3: Note 1 & Note 2 are default behavior. You can obviously change them as per your needs.

Configuring Supervisord
Linux
  1. Install supervisor
    • Linux: sudo apt install supervisor
    • Mac: brew install supervisor
  2. sudo cp conf/supervisor/jikan-worker.conf /etc/supervisor/conf.d
    • A default supervisor configureation file is available in this repo conf/supervisor/jikan-worker.conf
    • Be sure to update to the correct directory in jikan-worker.conf for command and stdout_logfile to the directory of jikan!

Example: If I install Jikan in /var/www/jikan-is-installed-here, you will have to adjust the following values in the jikan-worker.conf file.

...
command=php /var/www/jikan-is-installed-here/artisan queue:work --queue=high,low
...
stdout_logfile=/var/www/jikan-is-installed-here/storage/logs/worker.log
stderr_logfile=/var/www/jikan-is-installed-here/storage/logs/worker.error.log
  1. sudo supervisorctl reread
  2. sudo supervisorctl update
  3. sudo supervisorctl start jikan-worker:*
Mac
  1. Install Supervisor: brew install supervisor
  2. supervisord -c /usr/local/etc/supervisord.ini
  3. Copy conf/supervisor/jikan-worker.conf to /usr/local/etc/supervisor.d/
  4. brew services start supervisor
  5. sudo supervisorctl update
  6. sudo supervisorctl start jikan-worker:*

Troubleshooting

Please read the troubleshooting guide. For any additional help, join our Discord server.

Artisan Commands

Please read the commands guide. For any additional help, join our Discord server.

Information

If you don't want to host your instance, there's a public API available.

Wrappers

Language Wrappers
.NET Jikan.net by Ervie
Dart jikan-dart by Rafal Wachol
Elixir JikanEx by Sean Breckenridge
Go jikan-go by Daren Liang
jikan2go by nokusukun
Java Jikan4java by Doomsdayrs
Java Jikan Client by Schalar
reactive-jikan by Sandro Marques
JavaScript JikanJS by Zuritor
Kotlin JikanKt by Ganedra Afrasya
Node.js jikan-node by xy137
PHP jikan-php by Jan Vernieuwe
Python JikanPy by Abhinav Kasamsetty
Ruby Jikan.rb by Zerocchi
TypeScript jikants by Julien Broyard
jikan-client by Javier Blanco

Add your wrapper here

Running Tests

php vendor/bin/phpunit tests

Note: Tests may fail due to rate limit from MyAnimeList (HTTP 429)


Backers

Sugoi (すごい) Backers

Thank you to all our Sugoi (すごい) backers! 🙏 [Become a sugoi backer]

Backers

Thank you to all our backers! 🙏 [Become a backer]

Sponsors

Thank you to all our sponsors! [Become a sponsor]


DISCLAIMER

  • Jikan is not affiliated with MyAnimeList.net
  • You are responsible for the usage of this API. Please be respectful towards MyAnimeList's Terms Of Service

jikan-rest's People

Contributors

irfan-dahir avatar janvernieuwe avatar seanbreckenridge avatar purplepinapples avatar abhinavk99 avatar darenliang avatar ninjajc01 avatar sandrohc avatar ribeirogab avatar gsculerlor avatar lordkyubae avatar xy137 avatar nokusukun avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.