Navigation Menu

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.
# Python
from twython import Twython
usuario = "ajamaica"
twitter = Twython()
followers = twitter.getFollowersIDs( screen_name = usuario )
for follower_id in followers :
print "Usuario %d sigue a %s" % (follower_id,usuario)
tweets = twitter.getPublicTimeline()
for tweet in tweets :
print tweet['user']['name'].encode('utf-8')
print tweet['text'].encode('utf-8')
results = twitter.getDailyTrends()
for time, trend_list in results['trends'].iteritems() :
print time
for trend in trend_list :
print trend['query']
# Ruby
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