View Pit Stop page for race #7 by t111h — Ghost race
Official speed | 29.48 wpm (100.14 seconds elapsed during race) |
---|---|
Race Start | March 22, 2022 11:51:36pm UTC |
Race Finish | March 22, 2022 11:53:17pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 95.0% |
Points | 11.79 |
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'] |