Charlie (hobboloydn)

Race #117

View Pit Stop page for race #117 by hobboloydnGhost race

View profile for Charlie (hobboloydn)

Official speed 54.33 wpm (54.33 seconds elapsed during race)
Race Start April 19, 2025 12:59:08pm UTC
Race Finish April 19, 2025 1:00:02pm UTC
Outcome No win (2 of 3)
Accuracy 96.0%
Points 21.73
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']