试图起草一部法典,以便能够通过谁来核实域名。
但是,在阅读《公约》时,没有什么问题,这与谁是:domaintools.com/notregistereddomain.com来源代码不相称。 什么错误? 这个问题是重复的还是什么? 我确实知道如何解决这一问题。
import urllib2
def getPage():
url="http://whois.domaintools.com/notregistereddomain.com"
req = urllib2.Request(url)
try:
response = urllib2.urlopen(req)
return response.read()
except urllib2.HTTPError, error:
print "error: ", error.read()
a = error.read()
f = open("URL.txt", "a")
f.write(a)
f.close()
if __name__ == "__main__":
namesPage = getPage()
print namesPage