Rana (rana_1996)

Race #98

View Pit Stop page for race #98 by rana_1996Ghost race

View profile for Rana (rana_1996)

Official speed 30.28 wpm (96.70 seconds elapsed during race)
Race Start December 1, 2019 4:05:15pm UTC
Race Finish December 1, 2019 4:06:51pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 12.11
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']