aadithebest (aadithebeast)

Race #212

View Pit Stop page for race #212 by aadithebeastGhost race

View profile for aadithebest (aadithebeast)

Official speed 42.45 wpm (69.54 seconds elapsed during race)
Race Start September 4, 2025 11:54:07am UTC
Race Finish September 4, 2025 11:55:16am UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 16.98
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']