View Pit Stop page for race #23 by magali_alanoca — Ghost race
View profile for Florencia Magali Alanoca (magali_alanoca)
Official speed | 22.99 wpm (128.40 seconds elapsed during race) |
---|---|
Race Start | June 15, 2025 1:02:42am UTC |
Race Finish | June 15, 2025 1:04:50am UTC |
Outcome | No win (14 of 19) |
Opponents |
2. fanor (38.11 wpm) 7. fa1progra (33.25 wpm) |
Accuracy | 94.0% |
Points | 9.20 |
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'] |