Skip to content

Instantly share code, notes, and snippets.

@xenda
Created August 18, 2011 22:25
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save xenda/1155423 to your computer and use it in GitHub Desktop.
Save xenda/1155423 to your computer and use it in GitHub Desktop.
require 'twitter'
usuario = "ajamaica"
followers = Twitter.followers(usuario).users
followers.each do |follower|
puts "Usuario #{follower.id} sigue a #{usuario}"
end
tweets = Twitter.public_timeline
tweets.each do |tweet|
puts tweet.user.name
puts tweet.text
end
# just for the sake of it
0.upto(100) do |i|
#
end
Twitter.trends_daily.each_pair do |date, trends|
puts date
trends.each do |trend|
puts trend.query
end
end
@carloszaragoza
Copy link

Oye con que versión de python?

@ordenador
Copy link

Da lo mismo la versión, este código tiene que ver con el tutorial : http://www.youtube.com/watch?v=wp4DgNbGAUI

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment