ANDREA (andreaak00)

Race #20

View Pit Stop page for race #20 by andreaak00Ghost race

View profile for ANDREA (andreaak00)

Official speed 86.08 wpm (34.01 seconds elapsed during race)
Race Start July 20, 2019 5:09:47pm UTC
Race Finish July 20, 2019 5:10:21pm UTC
Outcome No win (2 of 4)
Opponents 1. sidd_ (123.91 wpm)
3. storm (73.88 wpm)
4. hyper_racer (61.23 wpm)
Accuracy 96.0%
Points 34.43
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']