permil (permil)

Race #122

View Pit Stop page for race #122 by permilGhost race

View profile for permil (permil)

Official speed 94.53 wpm (30.97 seconds elapsed during race)
Race Start February 25, 2019 3:28:57pm UTC
Race Finish February 25, 2019 3:29:28pm UTC
Outcome No win (3 of 3)
Accuracy 99.0%
Points 37.81
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']