r (deroche1)

Race #79

View Pit Stop page for race #79 by deroche1Ghost race

View profile for r (deroche1)

Official speed 112.64 wpm (25.99 seconds elapsed during race)
Race Start February 16, 2019 7:55:27am UTC
Race Finish February 16, 2019 7:55:53am UTC
Outcome No win (3 of 3)
Accuracy 99.0%
Points 45.05
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']