Popularity
2.1
Declining
Activity
2.9
-
7
2
2
Monthly Downloads: 2
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.
-
gringotts
A complete payment library for Elixir and Phoenix Framework similar to ActiveMerchant from the Ruby world. -
commerce_billing
A payment-processing library for Elixir that supports multiple gateways (e.g. Bogus & Stripe). -
MongoosePush
MongoosePush is an simple Elixir REST service allowing to send push notification via FCM and/or APNS. -
m2x
Elixir client for the AT&T M2X, a cloud-based fully managed time-series data storage service for network connected machine-to-machine (M2M) devices and the Internet of Things (IoT). (Erlang Version). -
amazon_product_advertising_client
Amazon Product Advertising API client for Elixir.
Get performance insights in less than 4 minutes
Scout APM uses tracing logic that ties bottlenecks to source code so you know the exact line of code causing performance issues and can get back to building a great product faster.
Sponsored
scoutapm.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>"