permil (permil)

Race #101

View Pit Stop page for race #101 by permilGhost race

View profile for permil (permil)

Official speed 96.09 wpm (30.47 seconds elapsed during race)
Race Start February 25, 2019 3:08:11pm UTC
Race Finish February 25, 2019 3:08:41pm UTC
Outcome No win (2 of 3)
Opponents 1. tanon710s (99.40 wpm)
Accuracy 99.0%
Points 38.44
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']