Last.fm favorite artists for social network
1 2 #!/usr/bin/env ruby 3 require 'net/http' 4 require 'csv' 5 user = 'nertzy' 6 csv = Net::HTTP.get 'ws.audioscrobbler.com', "/1.0/user/#{user}/topartists.txt" 7 puts CSV::Reader.parse(csv).collect{ |row| row[2] }.join(", ")