Race Result Details |
Racer | Carlos Mauricio Riverin Vasquez (mau_r123) |
Race Number | 21 |
Date | Sun, 8 Jun 2025 0:40:27 |
Universe | code |
Speed |
27 WPM
![]() |
Accuracy | 96.5% |
Rank | 8th place (out of 18) |
Opponents | alvarori (6th place) blizhte (7th place) eliasbaltazar (10th place) erick0334 (2nd place) fa1progra (4th place) fanor (3rd place) jhony99 (11th place) jhosmar_carlos (1st place) marco_soria (9th 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)
|