Opponent3313 (opponent3313)

Race #1

View Pit Stop page for race #1 by opponent3313Ghost race

View profile for Opponent3313 (opponent3313)

Official speed 48.54 wpm (60.82 seconds elapsed during race)
Race Start July 7, 2023 5:28:36am UTC
Race Finish July 7, 2023 5:29:37am UTC
Outcome Win (1 of 2)
Accuracy 96.0%
Points 19.42
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']