熊猫没了,爬老虎的话这个'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
正则表达式需要调整成虎牙的,不能直接用熊猫的。
00
相似问题