Elixirfm

LastFm API

Installation

If available in Hex, the package can be installed as:

  1. Add elixirfm to your list of dependencies in mix.exs:

        def deps do
          [{:elixirfm, "~> 0.0.1"}]
        end
        ```
  2. Ensure elixirfm is started in your application:

        def application do
          [applications: [:elixirfm]]
        end
        ```
  3. Configure API key for LastFm’s API

        config :elixirfm, api_key: "<your API key>"
        ```