View Pit Stop page for race #39 by fa1progra — Ghost race
View profile for Augusto Aguilar (fa1progra)
Official speed | 33.25 wpm (88.78 seconds elapsed during race) |
---|---|
Race Start | June 15, 2025 1:02:42am UTC |
Race Finish | June 15, 2025 1:04:11am UTC |
Outcome | No win (7 of 19) |
Accuracy | 91.0% |
Points | 13.30 |
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'] |