ILoveSelly (mkim236)

Race #16

View Pit Stop page for race #16 by mkim236Ghost race

View profile for ILoveSelly (mkim236)

Official speed 52.92 wpm (55.78 seconds elapsed during race)
Race Start June 16, 2023 10:43:44pm UTC
Race Finish June 16, 2023 10:44:39pm UTC
Outcome No win (2 of 3)
Accuracy 96.0%
Points 21.17
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']