View Pit Stop page for race #124 by arc_sec — Ghost race
View profile for Vielle (arc_sec)
| Official speed | 115.23 wpm (25.41 seconds elapsed during race) |
|---|---|
| Race Start | November 27, 2019 9:02:08pm UTC |
| Race Finish | November 27, 2019 9:02:33pm UTC |
| Outcome | Win (1 of 2) |
| Accuracy | 100.0% |
| Points | 46.09 |
| 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'] |