View Pit Stop page for race #2 by chocola97 — Ghost race
View profile for Chocola (chocola97)
Official speed | 38.02 wpm (77.64 seconds elapsed during race) |
---|---|
Race Start | August 1, 2023 6:03:40am UTC |
Race Finish | August 1, 2023 6:04:58am UTC |
Outcome | No win (2 of 3) |
Opponents |
1. jankyv8 (43.40 wpm) 3. nathalia97 (34.35 wpm) |
Accuracy | 93.0% |
Points | 15.21 |
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'] |