Race Result Details |
Racer | chavezfred (chavezfred) |
Race Number | 3 |
Date | Tue, 28 May 2024 19:56:47 |
Universe | code |
Speed |
22 WPM
![]() |
Accuracy | 94.2% |
Rank | 8th place (out of 21) |
Opponents | ariane111 (4th place) cristian_xd (7th place) jasel_alexander_ayma10 (1st 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)
|