Benedek (antokben)

Race #2

View Pit Stop page for race #2 by antokbenGhost race

View profile for Benedek (antokben)

Official speed 54.52 wpm (54.15 seconds elapsed during race)
Race Start August 4, 2023 12:46:06pm UTC
Race Finish August 4, 2023 12:47:00pm UTC
Outcome Win (1 of 2)
Opponents 2. inusah (44.94 wpm)
Accuracy 96.0%
Points 21.81
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']