python3写爬虫报错--------TypeError: cannot use a string pattern on a bytes-like object
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python3写爬虫报错--------TypeError: cannot use a string pattern on a bytes-like object相关的知识,希望对你有一定的参考价值。
根据所抓取的网页来修改编码, 如果网页编码是utf-8, 那就html=html.decode(‘utf-8‘)
上下文是这样的
html = ‘‘
while True:
html = loadurl(url)
if html == ‘‘:
print (‘load‘, url,‘error‘)
print (‘oppa‘)
continue
else:
break
seriesList = re.findall(reSeriesList,html.decode(‘GBK‘),re.S)
以上是关于python3写爬虫报错--------TypeError: cannot use a string pattern on a bytes-like object的主要内容,如果未能解决你的问题,请参考以下文章
Python3网络爬虫实战-10爬虫框架的安装:PySpiderScrapy