jhosmar (jhosmar_carlos)

Race #7

View Pit Stop page for race #7 by jhosmar_carlosGhost race

View profile for jhosmar (jhosmar_carlos)

Official speed 35.72 wpm (82.64 seconds elapsed during race)
Race Start June 8, 2025 12:38:39am UTC
Race Finish June 8, 2025 12:40:01am UTC
Outcome Win (1 of 18)
Opponents 3. fanor (33.91 wpm)
Accuracy 91.0%
Points 14.29
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']