View Pit Stop page for race #1 by ibizabroker — Ghost race
View profile for ibizabroker (ibizabroker)
Official speed | 34.19 wpm (86.34 seconds elapsed during race) |
---|---|
Race Start | April 5, 2022 9:30:21am UTC |
Race Finish | April 5, 2022 9:31:48am UTC |
Outcome | No win (2 of 2) |
Opponents |
1. redpickle13 (49.68 wpm) |
Accuracy | 94.0% |
Points | 13.68 |
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'] |