View Pit Stop page for race #26 by acut3_racy — Ghost race
View profile for Lien❤️Neu(2025-04-21) (acut3_racy)
Official speed | 83.62 wpm (35.30 seconds elapsed during race) |
---|---|
Race Start | June 18, 2025 5:52:45am UTC |
Race Finish | June 18, 2025 5:53:20am UTC |
Outcome | No win (1 of 1) |
Accuracy | 100.0% |
Points | 33.45 |
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'] |