Mohamed Emad Fathy (mohamed_2004_emad)

Race #7

View Pit Stop page for race #7 by mohamed_2004_emadGhost race

View profile for Mohamed Emad Fathy (mohamed_2004_emad)

Official speed 27.77 wpm (106.30 seconds elapsed during race)
Race Start April 4, 2025 3:34:28pm UTC
Race Finish April 4, 2025 3:36:14pm UTC
Outcome Win (1 of 3)
Accuracy 92.0%
Points 11.11
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']