Race Result Details |
Racer | Misael Rocha (blizhte) |
Race Number | 21 |
Date | Sun, 8 Jun 2025 0:40:25 |
Universe | code |
Speed |
28 WPM
![]() |
Accuracy | 96.4% |
Rank | 7th place (out of 18) |
Opponents | alvarori (6th place) eliasbaltazar (10th place) erick0334 (2nd place) fa1progra (4th place) fanor (3rd place) jhony99 (11th place) jhosmar_carlos (1st place) marco_soria (9th place) mau_r123 (8th place) |
Text typed:
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']
— (other)
by www.pythonforbeginners.com
(see stats)
|