gpt4 book ai didi

python - 我收到超时错误 : [WinError 10060] when I parsing my school website

转载 作者:太空宇宙 更新时间:2023-11-03 17:32:40 24 4
gpt4 key购买 nike

# -*- coding: UTF-8 -*-

import urllib.request
import re
import os

os.system("cls")

url=input("Url Link : ")

if(url[0:8]=="https://"):
url=url[:4]+url[5:]

if(url[0:7]!="http://"):
url="http://"+url

value=urllib.request.urlopen(url).read().decode('UTF8')
par='<title>(.+?)</title>'

result=re.findall(par,value)
print(result)

这是标题解析程序。它在解析 Google、Gmail 网站时效果很好。当尝试解析我的学校网站时出现错误。是学校的问题吗?或者在我的代码中?

最佳答案

您可以增加超时

代码:

value=urllib.request.urlopen(url,timeout=60).read().decode('UTF8')

关于python - 我收到超时错误 : [WinError 10060] when I parsing my school website,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31669040/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com