关于python网络爬虫的一个简单问题

错误提示是这样的:urllib.error.URLError:<urlopenerror[WinError10060]由于连接方在一段时间后没有正确答复或连接的主机没有反... 错误提示是这样的:urllib.error.URLError: <urlopen error [WinError 10060] 由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。>
我的beautifulsoup已经下好了
import urllib.request

from bs4 import BeautifulSoup

class Scraper:

def __init__(self, site):

self.site = site

def scrape(self):

r = urllib.request.urlopen(self.site)

html = r.read()

parser = "html.parser"

sp = BeautifulSoup(html,

parser)

for tag in sp.find_all("a"):

url = tag.get("href")

if url is None:

continue

if "html" in url:

print("\n" + url)

news = "https://news.google.com/"

Scraper(news).scrape()
展开
 我来答
不忍呵
2019-07-10 · TA获得超过5667个赞
知道大有可为答主
回答量:4789
采纳率:85%
帮助的人:528万
展开全部
你用的是python2,所以才会有这种编码问题简单一点的话:你拿python3重写一下就行了。如果改的话,在表头定义一下你要输出的编码,编码定义为UTF-8,就是显示中文了
追问
我用的就是python3.7,我再去试一下你的
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式