Elixirfm

LastFm API

Installation

Last.fm API wrapper for Elixir. (Documentation)

Currently only supports non-authenticated endpoints.

The package can be installed by:

  1. Add elixirfm to your list of dependencies in mix.exs:
  def deps do
    [{:elixirfm, "~> 0.0.1"}]
  end
  1. Ensure elixirfm is started in your application:
  def application do
    [applications: [:elixirfm]]
  end
  1. Configure API key for LastFm’s API
  config :elixirfm, api_key: "<your API key>"