View Pit Stop page for race #5 by shekhar_prajapati — Ghost race
View profile for Shekhar (shekhar_prajapati)
Official speed | 27.66 wpm (106.72 seconds elapsed during race) |
---|---|
Race Start | March 8, 2024 1:01:11pm UTC |
Race Finish | March 8, 2024 1:02:58pm UTC |
Outcome | No win (6 of 7) |
Opponents |
2. aman_sharma193 (39.34 wpm) 4. rulebreakers (33.16 wpm) 5. abhi_guy_01 (33.10 wpm) |
Accuracy | 96.0% |
Points | 11.06 |
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'] |