Packages

An Elixir wrapper for using the TMDb (The Movie Database) API.

Current section

Files

Jump to
tmdb_elixir lib people people.ex
Raw

lib/people/people.ex

defmodule TmdbElixir.People do
use TmdbElixir.Base
def find(id, params \\ %{}) do
get!("person/#{id}?#{URI.encode_query(params)}").body
end
end