|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
这是斗鱼的人气名字爬取的相关代码
vscode说\d和\D有问题,我按照别人的爬虫视频改的感觉格式没错啊?
Anomalous backslash in string: '\d'. String constant might be missing an r prefix.
Anomalous backslash in string: '\D'. String constant might be missing an r prefix.
这是我的代码
from urllib import request
import re
class Spider():
url = 'https://www.douyu.com/g/lol'
root_pattern='<div class="DyListCover-info">[\d\D]</div>'
def __fetch_content(self):
r = request.urlopen(Spider.url)
#可以打开网站的代码request.urlopen
htmls = r.read()
#此时的htmls里不是我们想要的,里面全是数字
htmls = str(htmls,encoding='utf-8')
#这样就可以把htmls转换为可以分析的数据
def __analysis(self,htmls):
pass
def go(self):
htmls = self.__fetch_content()
self.__analysis(htmls)
#把analysis里的htmls参数传入进来
字符串前面加个r防止转义,报错都给出建议了,你都不看
root_pattern=r'<div class="DyListCover-info">[\d\D]</div>'
|
|