Navin (nikash_)

Race #11

View Pit Stop page for race #11 by nikash_Ghost race

View profile for Navin (nikash_)

Official speed 31.26 wpm (94.43 seconds elapsed during race)
Race Start June 7, 2023 11:21:28am UTC
Race Finish June 7, 2023 11:23:02am UTC
Outcome No win (2 of 6)
Opponents 1. varun_1408 (32.87 wpm)
Accuracy 94.0%
Points 12.50
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']