View Pit Stop page for race #121 by sidd_ — Ghost race
Official speed | 100.20 wpm (29.22 seconds elapsed during race) |
---|---|
Race Start | February 14, 2019 3:39:33am UTC |
Race Finish | February 14, 2019 3:40:02am UTC |
Outcome | No win (2 of 3) |
Opponents |
1. deroche1 (111.37 wpm) 3. poem (64.63 wpm) |
Accuracy | 98.0% |
Points | 40.08 |
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'] |