aymen (aymenalwh)

Race #5

View Pit Stop page for race #5 by aymenalwhGhost race

View profile for aymen (aymenalwh)

Official speed 40.30 wpm (73.25 seconds elapsed during race)
Race Start July 2, 2023 1:02:41pm UTC
Race Finish July 2, 2023 1:03:54pm UTC
Outcome No win (2 of 2)
Opponents 1. chet09 (44.53 wpm)
Accuracy 93.0%
Points 16.12
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']