Misael Rocha (blizhte)

Race #32

View Pit Stop page for race #32 by blizhteGhost race

View profile for Misael Rocha (blizhte)

Official speed 27.53 wpm (107.23 seconds elapsed during race)
Race Start June 15, 2025 1:02:42am UTC
Race Finish June 15, 2025 1:04:29am UTC
Outcome No win (9 of 19)
Opponents 2. fanor (38.11 wpm)
3. mau_r123 (34.85 wpm)
7. fa1progra (33.25 wpm)
14. magali_alanoca (22.99 wpm)
Accuracy 95.0%
Points 11.01
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']