View Pit Stop page for race #64 by hyper_racer — Ghost race
View profile for kewl (hyper_racer)
Official speed | 62.08 wpm (47.16 seconds elapsed during race) |
---|---|
Race Start | August 22, 2019 1:03:13pm UTC |
Race Finish | August 22, 2019 1:04:00pm UTC |
Outcome | No win (1 of 1) |
Accuracy | 97.0% |
Points | 24.83 |
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'] |