View Pit Stop page for race #6 by dennis123123 — Ghost race
View profile for DENNIS (dennis123123)
Official speed | 28.81 wpm (102.46 seconds elapsed during race) |
---|---|
Race Start | July 14, 2023 1:47:36pm UTC |
Race Finish | July 14, 2023 1:49:18pm UTC |
Outcome | No win (5 of 8) |
Opponents |
1. rem123 (35.28 wpm) |
Accuracy | 94.0% |
Points | 11.53 |
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'] |