Race Result Details |
Racer | Jasel Alexander Ayma Titicayo (jasel_alexander_ayma10) |
Race Number | 4 |
Date | Tue, 28 May 2024 19:56:08 |
Universe | code |
Speed |
32 WPM
![]() |
Accuracy | 94.5% |
Rank | 1st place (out of 21) |
Opponents | ariane111 (4th place) chavezfred (8th place) cristian_xd (7th place) luis_rodrigo (2nd place) mariabetzabeortega_soto (5th place) sharick_chungara (6th 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)
|