Benedek (antokben)

Race #4

View Pit Stop page for race #4 by antokbenGhost race

View profile for Benedek (antokben)

Official speed 57.26 wpm (51.55 seconds elapsed during race)
Race Start August 4, 2023 12:48:30pm UTC
Race Finish August 4, 2023 12:49:21pm UTC
Outcome Win (1 of 2)
Opponents 2. inusah (47.73 wpm)
Accuracy 98.0%
Points 22.91
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']