abhishek (a_anand_12)

Race #39

View Pit Stop page for race #39 by a_anand_12Ghost race

View profile for abhishek (a_anand_12)

Official speed 20.34 wpm (145.13 seconds elapsed during race)
Race Start December 12, 2022 2:10:34pm UTC
Race Finish December 12, 2022 2:12:59pm UTC
Outcome Win (1 of 3)
Accuracy 93.0%
Points 8.14
Text #10020 (Length: 246 characters)

import urllib2 import json screen_name = "wordpress" url = "http://api.twitter.com/1/statuses/user_timeline.json?screen_name=" + screen_name data = json.load(urllib2.urlopen(url)) print len(data), "tweets" for tweet in data: print tweet['text']