Liz Mariela Perez Gervacio (liz_mariela)

Race #17

View Pit Stop page for race #17 by liz_marielaGhost race

View profile for Liz Mariela Perez Gervacio (liz_mariela)

Official speed 24.23 wpm (121.83 seconds elapsed during race)
Race Start June 6, 2025 2:42:34am UTC
Race Finish June 6, 2025 2:44:36am UTC
Outcome No win (2 of 2)
Accuracy 71.0%
Points 9.69
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']