View Pit Stop page for race #4 by souljin99 — Ghost race
View profile for Marco Soria Ali (souljin99)
Official speed | 21.10 wpm (139.91 seconds elapsed during race) |
---|---|
Race Start | April 29, 2025 9:08:17pm UTC |
Race Finish | April 29, 2025 9:10:37pm UTC |
Outcome | No win (3 of 10) |
Opponents |
1. erick0334 (30.16 wpm) 2. alvaroricaldi (25.59 wpm) 5. priscilacervantes23 (16.78 wpm) 6. cris1310 (15.91 wpm) |
Accuracy | 94.0% |
Points | 8.44 |
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'] |