View Pit Stop page for race #97 by rollno14 — Ghost race
View profile for Free Palestine (rollno14)
Official speed | 68.52 wpm (43.08 seconds elapsed during race) |
---|---|
Race Start | July 12, 2021 8:31:56am UTC |
Race Finish | July 12, 2021 8:32:39am UTC |
Outcome | Win (1 of 4) |
Opponents |
4. mr_boombaastic (46.44 wpm) |
Accuracy | 99.0% |
Points | 27.41 |
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'] |