Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

Last.fm favorite artists for social network (See related posts)

// Returns a list of your top 50 favorite artists from last.fm, suitable for pasting into a Facebook, Myspace, or similar profile

#!/usr/bin/env ruby
require 'net/http'
require 'csv'
user = 'nertzy'
csv = Net::HTTP.get 'ws.audioscrobbler.com', "/1.0/user/#{user}/topartists.txt"
puts CSV::Reader.parse(csv).collect{ |row| row[2] }.join(", ")

Comments on this post

jakeekaj posts on Jun 22, 2007 at 07:07
Hi, I am new to ruby and am wondering how to get this code working on a MySpace profile successfully? Thanks.

You need to create an account or log in to post comments to this site.


Click here to browse all 5140 code snippets

Related Posts