Popularity
1.9
Stable
Activity
0.0
Stable
9
2
2
Monthly Downloads: 34
Programming language: Elixir
License: MIT License
Tags:
Third Party APIs
elixirfm alternatives and similar packages
Based on the "Third Party APIs" category.
Alternatively, view elixirfm alternatives based on common mentions on social networks and blogs.
-
ethereumex
Elixir JSON-RPC client for the Ethereum blockchain 0x063D3d782598744AF1252eBEaf3aA97D990Edf72 -
MongoosePush
MongoosePush is a simple Elixir RESTful service allowing to send push notification via FCM and/or APNS. -
cashier
Cashier is an Elixir library that aims to be an easy to use payment gateway, whilst offering the fault tolerance and scalability benefits of being built on top of Erlang/OTP
InfluxDB - Purpose built for real-time analytics at any scale.
InfluxDB Platform is powered by columnar analytics, optimized for cost-efficient storage, and built with open data standards.
Promo
www.influxdata.com
Do you think we are missing an alternative of elixirfm or a related project?
README
Elixirfm
Last.fm API wrapper for Elixir. (Documentation)
Installation
The package can be installed by:
- Add
elixirfm
to your list of dependencies inmix.exs
:
def deps do
[{:elixirfm, "~> 1.0.0"}]
end
- Ensure
elixirfm
is started in your application:
def application do
[
applications: [
:elixirfm
]
]
end
- Configure API key for LastFm's API by setting Application var in your config
config :elixirfm,
api_key: "<your API key>"
secret_key: "<your SECRET key>"
or by setting system env var with
$ export LASTFM_SECRET_KEY="<your SECRET key>" LASTFM_API_KEY="<your API key>"