View Pit Stop page for race #112 by gafan_dr34ml3nd — Ghost race
View profile for GAfan(dr34ml3nd) (gafan_dr34ml3nd)
| Official speed | 47.16 wpm (62.60 seconds elapsed during race) |
|---|---|
| Race Start | November 10, 2025 12:40:54pm UTC |
| Race Finish | November 10, 2025 12:41:56pm UTC |
| Outcome | No win (2 of 3) |
| Accuracy | 96.0% |
| Points | 18.86 |
| 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'] |