最赞回答 / 慕粉3698681
找到原因了:html_parser.py 中 原先import urllib,只能在debug下爬虫成功。后改为import urllib.request,run模式下也成功
2018-02-12
有的同学可能会在python3的环境下运行后出现 warnings.warn("You provided Unicode markup but also provided a value for from_encoding. Your from_encoding will be ignored.")
这是因为python3 缺省的编码是unicode, 再在from_encoding设置为utf8, 会被忽视掉,去掉【from_encoding="utf-8"】这一个就好了:soup = BeautifulSoup(html_doc, 'html.parser')
这是因为python3 缺省的编码是unicode, 再在from_encoding设置为utf8, 会被忽视掉,去掉【from_encoding="utf-8"】这一个就好了:soup = BeautifulSoup(html_doc, 'html.parser')
2018-02-12
最新回答 / Vsolution
res_data = {}这一句在pycharm中报错,显示黄色波浪This inspection detects situations when dictionary creation could be rewritten with dictionary literal.什么情况?
2018-02-11
最新回答 / 慕斯卡0521483
源码中的11行是输出网页字符串的长度,你将字符长度都已经输出了,说明网页内容不为空,可以再11行后面添加一行:print(response1.reand().decode("utf-8")),这样就可以输出网页内容
2018-02-09
最新回答 / 慕莱坞2274375
一般是没有爬取完全导致的,可以把数据改小一点。具体可看https://github.com/lzcdev/BaiDuBaiKeSpider,希望对你有帮助
2018-02-07