View Pit Stop page for race #55 by sidd_ — Ghost race
Official speed | 122.03 wpm (23.99 seconds elapsed during race) |
---|---|
Race Start | January 27, 2019 11:08:45pm UTC |
Race Finish | January 27, 2019 11:09:09pm UTC |
Outcome | Win (1 of 5) |
Opponents |
2. delirious (79.92 wpm) 3. styrofoam (68.75 wpm) 4. hellothen (66.23 wpm) 5. poem (65.81 wpm) |
Accuracy | 98.0% |
Points | 48.81 |
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'] |