Race Result Details |
Racer | Alvaro Ricaldi (alvarori) |
Race Number | 4 |
Date | Sun, 8 Jun 2025 0:40:20 |
Universe | code |
Speed |
29 WPM
![]() |
Accuracy | 93.7% |
Rank | 6th place (out of 18) |
Opponents | 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) 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)
|