Achromatic - youtu.be/VuzE718Ac1M (bladevampirek)

Race #127

View Pit Stop page for race #127 by bladevampirekGhost race

View profile for Achromatic - youtu.be/VuzE718Ac1M (bladevampirek)

Official speed 65.01 wpm (45.04 seconds elapsed during race)
Race Start April 4, 2020 8:38:36pm UTC
Race Finish April 4, 2020 8:39:21pm UTC
Outcome No win (2 of 2)
Opponents 1. landarian (87.06 wpm)
Accuracy 96.0%
Points 26.01
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']