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写爬虫或网站时的乱码问题

Python3~爬虫工具使用requests库

Python3网络爬虫实战-10爬虫框架的安装:PySpiderScrapy

python3.4 + requests + re 仿写糗事百科爬虫,遇到一个疑惑,求助

python3.6安装scrapy报错

python3网络爬虫学习——基本库的使用