i want to get html document on specific web site.
this code is working well.
import urllib2
link = "https://www.google.com"
print link
f = urllib2.urlopen(link)
myfile = f.read()
print myfile
but this code is not working.
import urllib2
link = "https://www.virustotal.com/en/file/7cf757e0943b0a6598795156c156cb90feb7d87d4a22c01044499c4e1619ac57/analysis/"
print link
f = urllib2.urlopen(link)
myfile = f.read()
print myfile
why do not working specific site?