Junior (director_junior)

Race #6

View Pit Stop page for race #6 by director_juniorGhost race

View profile for Junior (director_junior)

Official speed 45.31 wpm (65.15 seconds elapsed during race)
Race Start July 4, 2025 6:35:38am UTC
Race Finish July 4, 2025 6:36:43am UTC
Outcome No win (4 of 6)
Opponents 1. zoonear (53.71 wpm)
Accuracy 97.0%
Points 18.12
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']