Race Result Details |
| Racer | Carlos Mauricio Riverin Vasquez (mau_r123) |
| Race Number | 32 |
| Date | Sun, 15 Jun 2025 1:04:07 |
| Universe | code |
| Speed |
35 WPM
Try to beat?
|
| Accuracy | 98% |
| Rank | 3rd place (out of 19) |
| Opponents | alvaroricaldis (8th place) blizhte (9th place) erick0334 (5th place) fa1progra (7th place) fanor (2nd place) jgary199 (6th place) jhony99 (10th place) jhosmar_ (1st place) magali_alanoca (14th place) marco_soria (12th place) noeleliasvm (11th 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)
|
