Type like never before! (realdill)

Race #66

View Pit Stop page for race #66 by realdillGhost race

View profile for Type like never before! (realdill)

Official speed 64.49 wpm (45.77 seconds elapsed during race)
Race Start January 15, 2022 7:06:35pm UTC
Race Finish January 15, 2022 7:07:21pm UTC
Outcome No win (2 of 3)
Accuracy 97.0%
Points 25.80
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']