BOAT (captain_boaty)

Race #16

View Pit Stop page for race #16 by captain_boatyGhost race

View profile for BOAT (captain_boaty)

Official speed 47.36 wpm (62.33 seconds elapsed during race)
Race Start July 3, 2023 4:55:59am UTC
Race Finish July 3, 2023 4:57:01am UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 18.94
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']