road to 170WPM (royaljaat)

Race #44

View Pit Stop page for race #44 by royaljaatGhost race

View profile for road to 170WPM (royaljaat)

Official speed 64.70 wpm (45.63 seconds elapsed during race)
Race Start July 27, 2022 4:32:59am UTC
Race Finish July 27, 2022 4:33:45am UTC
Outcome Win (1 of 2)
Opponents 2. grantly (52.92 wpm)
Accuracy 96.0%
Points 25.88
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']