kewl (hyper_racer)

Race #38

View Pit Stop page for race #38 by hyper_racerGhost race

View profile for kewl (hyper_racer)

Official speed 63.35 wpm (46.22 seconds elapsed during race)
Race Start July 20, 2019 5:02:12pm UTC
Race Finish July 20, 2019 5:02:59pm UTC
Outcome No win (3 of 3)
Opponents 1. cr0cka (75.82 wpm)
2. foggyy (73.85 wpm)
Accuracy 97.0%
Points 25.34
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']