View Pit Stop page for race #32 by mau_r123 — Ghost race
View profile for Carlos Mauricio Riverin Vasquez (mau_r123)
Official speed | 34.85 wpm (84.71 seconds elapsed during race) |
---|---|
Race Start | June 15, 2025 1:02:42am UTC |
Race Finish | June 15, 2025 1:04:07am UTC |
Outcome | No win (3 of 19) |
Opponents |
2. fanor (38.11 wpm) 7. fa1progra (33.25 wpm) 14. magali_alanoca (22.99 wpm) |
Accuracy | 98.0% |
Points | 13.94 |
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'] |