Karthik (bvpk)

Race #1

View Pit Stop page for race #1 by bvpkGhost race

View profile for Karthik (bvpk)

Official speed 29.46 wpm (100.20 seconds elapsed during race)
Race Start July 14, 2023 9:52:36am UTC
Race Finish July 14, 2023 9:54:16am UTC
Outcome Win (1 of 2)
Accuracy 93.0%
Points 11.79
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']