Augusto Aguilar (fa1progra)

Race #23

View Pit Stop page for race #23 by fa1prograGhost race

View profile for Augusto Aguilar (fa1progra)

Official speed 33.83 wpm (87.26 seconds elapsed during race)
Race Start May 22, 2025 1:46:07am UTC
Race Finish May 22, 2025 1:47:35am UTC
Outcome Win (1 of 8)
Opponents 5. pacara_flores_aida (20.04 wpm)
Accuracy 91.0%
Points 13.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']