熊猫没了,爬老虎的话这个'https://www.huya.com/l'地址对吗?htmls是空的数据

来源:14-1 导言

weixin_慕斯卡4281563

2019-06-11

from urllib import request


class Spider(object):
    url = 'https://www.huya.com/l'

    def __fetch_content(self):
        r = request.urlopen(Spider.url)
        htmls = r.read()
        htmls = str(htmls, encoding='utf-8')
        a = 1

    def go(self):
        self.__fetch_content()


spider = Spider()
spider.go()
写回答

1回答

7七月

2019-06-11

正则表达式需要调整成虎牙的,不能直接用熊猫的。

0
0

Python3.8系统入门+进阶 (程序员必备第二语言)

语法精讲/配套练习+思考题/原生爬虫实战

14447 学习 · 4438 问题

查看课程