Golden0wnz (golden0wnz)

Race #8

View Pit Stop page for race #8 by golden0wnzGhost race

View profile for Golden0wnz (golden0wnz)

Official speed 48.25 wpm (61.18 seconds elapsed during race)
Race Start October 7, 2025 11:56:00pm UTC
Race Finish October 7, 2025 11:57:01pm UTC
Outcome No win (3 of 3)
Accuracy 95.0%
Points 19.30
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']