Race Result Details |
Racer | Beimar Ramirez (jhony99) |
Race Number | 34 |
Date | Sun, 8 Jun 2025 0:40:49 |
Universe | code |
Speed |
23 WPM
![]() |
Accuracy | 89.6% |
Rank | 11th place (out of 18) |
Opponents | alvarori (6th place) blizhte (7th place) eliasbaltazar (10th place) erick0334 (2nd place) fa1progra (4th place) fanor (3rd 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)
|