urllib.request.urlopen不会停止

时间:2018-11-22 17:53:15

标签: python urllib

我正在尝试使用urllib.request.open获取html源。

我不知道为什么我的代码没有停止。

from urllib.request import urlopen

url = "https://google.com"
try:
    page = urlopen(url)
    f = open("google.html","wb")
    f.write(page.read())
except:
    print("Error")

但是随着超时,它收到了源。

from urllib.request import urlopen

url = "https://google.com"
try:
    page = urlopen(url, timeout=0.1)
    f = open("google.html","wb")
    f.write(page.read())
except:
    print("Error")

0 个答案:

没有答案