Gerar Quispe (gquispe)

Race #60

View Pit Stop page for race #60 by gquispeGhost race

View profile for Gerar Quispe (gquispe)

Official speed 45.82 wpm (64.43 seconds elapsed during race)
Race Start May 28, 2025 11:34:41pm UTC
Race Finish May 28, 2025 11:35:45pm UTC
Outcome No win (2 of 4)
Accuracy 100.0%
Points 18.33
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']