View Pit Stop page for race #31 by fa1progra — Ghost race
View profile for Augusto Aguilar (fa1progra)
Official speed | 32.97 wpm (89.54 seconds elapsed during race) |
---|---|
Race Start | June 8, 2025 12:38:39am UTC |
Race Finish | June 8, 2025 12:40:08am UTC |
Outcome | No win (4 of 18) |
Opponents |
1. jhosmar_carlos (35.72 wpm) 3. fanor (33.91 wpm) |
Accuracy | 92.0% |
Points | 13.19 |
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'] |