Home

Awesome

JikanEx Build Status Hex.pm PRs Welcome

A thin elixir wrapper for the Jikan API.

See the documentation for usage.

Quickstart

alias JikanEx.Request
client = JikanEx.client()
response = client |> Request.anime!(1)
IO.puts response["title"]  # Prints 'Cowboy Bebop'

Installation

Add the following to your mix.exs:

def deps do
  [
    {:jikan_ex, "~> 0.1.5"}
  ]
end