Skip to content

Instantly share code, notes, and snippets.

@palfrey
Created October 15, 2010 23:22
Show Gist options
  • Select an option

  • Save palfrey/629139 to your computer and use it in GitHub Desktop.

Select an option

Save palfrey/629139 to your computer and use it in GitHub Desktop.
Artist/Album/Title search
artist(Name) ->
lastfm_call(artist.search, [{artist,Name}], ['artistmatches'], ['artist'], []).
album(Name) ->
lastfm_call(album.search, [{album,Name}], ['albummatches'], ['album'], ['artist']).
track(Name) ->
lastfm_call(track.search, [{track,Name}], ['trackmatches'], ['track'], ['artist','listeners']).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment