(nullchilly)

Race #18

View Pit Stop page for race #18 by nullchillyGhost race

View profile for (nullchilly)

Official speed 77.44 wpm (38.12 seconds elapsed during race)
Race Start July 1, 2022 8:04:47am UTC
Race Finish July 1, 2022 8:05:25am UTC
Outcome Win (1 of 3)
Opponents 2. frame_ability (65.04 wpm)
Accuracy 98.0%
Points 30.98
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']