Elixirfm
Last.fm API wrapper for Elixir. (Documentation)
Currently supports all non-authenticated endpoints.
Installation
The package can be installed by:
-
Add
elixirfmto your list of dependencies inmix.exs:
def deps do
[{:elixirfm, "~> 0.0.10"}]
end-
Ensure
elixirfmis started in your application:
def application do
[
applications: [
:elixirfm
]
]
end- Configure API key for LastFm's API
config :elixirfm,
api_key: "<your API key>"
secret_key: "<your SECRET key>"