ay (d3b1)

Race #6

View Pit Stop page for race #6 by d3b1Ghost race

View profile for ay (d3b1)

Official speed 81.23 wpm (36.34 seconds elapsed during race)
Race Start September 19, 2021 2:56:16am UTC
Race Finish September 19, 2021 2:56:52am UTC
Outcome No win (2 of 2)
Opponents 1. vanosgaming2014 (83.38 wpm)
Accuracy 97.0%
Points 32.49
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']