Skip to content

Instantly share code, notes, and snippets.

@huned
Created May 1, 2009 19:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save huned/105219 to your computer and use it in GitHub Desktop.
Save huned/105219 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
require 'rubygems'
require 'httparty'
class Tooter
include HTTParty
format :json
end
Tooter.get('http://twitter.com/statuses/friends/burnto.json').each do |friend|
puts friend['screen_name'] + ', ' + friend['statuses_count'].to_s
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment