Maria Betzabe Ortega Soto (maria_ortega10)

Race #151

View Pit Stop page for race #151 by maria_ortega10Ghost race

View profile for Maria Betzabe Ortega Soto (maria_ortega10)

Official speed 31.84 wpm (92.71 seconds elapsed during race)
Race Start July 15, 2025 11:58:56am UTC
Race Finish July 15, 2025 12:00:29pm UTC
Outcome No win (3 of 3)
Accuracy 93.0%
Points 12.74
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']