Last active
December 15, 2015 01:09
-
-
Save fcojperez/5178346 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import twitter | |
import datetime | |
import os | |
twitter_api=twitter.Twitter(domain="api.twitter.com", api_version='1') | |
WORLD_WOE_ID = 1 | |
world_trends = twitter_api.trends._(WORLD_WOE_ID) | |
trends = [ trend for trend in world_trends()[0]['trends'] ] | |
# clear console | |
clear = lambda: os.system('clear') | |
clear() | |
#print trendding topics | |
now = datetime.datetime.now() | |
print "Twitter Trendding topics at ", now | |
for cur in trends: | |
print cur['name'] | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment