Skip to content

Instantly share code, notes, and snippets.

@dionimf
Forked from fmasanori/gist:4121001
Last active August 29, 2015 14:06
Show Gist options
  • Select an option

  • Save dionimf/5199b8c28e7fb79849f7 to your computer and use it in GitHub Desktop.

Select an option

Save dionimf/5199b8c28e7fb79849f7 to your computer and use it in GitHub Desktop.
#
# API DEPRECATED AT JUNE 2013
# https://dev.twitter.com/docs/faq#17750
#
import urllib, json
def trend_topics():
url = 'https://api.twitter.com/1/trends/1.json'
resp = urllib.urlopen(url).read()
data = json.loads(resp)
return data
for resp in trend_topics():
for trend in resp['trends']:
print (trend['name'])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment