spondunoob (spondulix)

Race #457

View Pit Stop page for race #457 by spondulixGhost race

View profile for spondunoob (spondulix)

Official speed 104.19 wpm (28.10 seconds elapsed during race)
Race Start October 18, 2019 12:16:38am UTC
Race Finish October 18, 2019 12:17:06am UTC
Outcome No win (1 of 1)
Accuracy 99.0%
Points 41.68
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']