I want to get 3 random texts with python from this website: http://mertatilgan.tk/dork.txt
I tried this :
import urllib2
for line in urllib2.urlopen("http://mertatilgan.tk/dork.txt"):
print line
while(True):pass
It worked but it's getting an only first text from the website. But I need 3 random texts. (Sorry for my bad English.)