Project

firstfm

0.0
No commit activity in last 3 years
No release in over 3 years
Firstfm is a ruby wrapper for the Last.fm APIs ( http://www.last.fm/api ). My main focus is to import events from Last.FM, but with time I will try to add support for all API methods.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

~> 0.10.2
~> 0.13.5
 Project Readme

<img src=“https://travis-ci.org/egze/firstfm.png?branch=master” alt=“Build Status” />

Firstfm¶ ↑

Firstfm is a ruby wrapper for the Last.fm APIs ( www.last.fm/api ).

My main focus is to import events from Last.FM, but with time I will try to add support for all API methods.

Installation¶ ↑

sudo gem install firstfm

or add to your Gemfile

gem 'firstfm'

Configuration¶ ↑

This goes to your initializers/firstfm.rb

Firstfm.configure do |ffm|
  ffm.api_key = "YOUR_KEY_HERE"
end

Usage¶ ↑

Firstfm::Venue.search("arena")

Firstfm::Venue.get_events(8908030)

Firstfm::Geo.get_events :location => "Berlin"

Firstfm::Artist.search "Eminem"

Firstfm::Artist.get_top_tracks "Eminem"

Firstfm::Track.search "Believe"