View Pit Stop page for race #35 by sidd_ — Ghost race
Official speed | 117.61 wpm (24.90 seconds elapsed during race) |
---|---|
Race Start | January 27, 2019 10:36:26pm UTC |
Race Finish | January 27, 2019 10:36:51pm UTC |
Outcome | Win (1 of 5) |
Opponents |
2. delirious (77.19 wpm) 3. styrofoam (66.88 wpm) 4. poem (63.05 wpm) |
Accuracy | 98.0% |
Points | 47.05 |
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'] |