View Pit Stop page for race #76 by kiran11621 — Ghost race
View profile for Kiran (kiran11621)
Official speed | 29.68 wpm (98.65 seconds elapsed during race) |
---|---|
Race Start | April 13, 2020 5:11:57pm UTC |
Race Finish | April 13, 2020 5:13:35pm UTC |
Outcome | No win (2 of 2) |
Opponents |
1. karanjain18 (58.05 wpm) |
Accuracy | 97.0% |
Points | 11.87 |
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'] |