鱼C论坛

 找回密码
 立即注册
查看: 1788|回复: 2

[已解决](小爬虫)这个DyListCover为什么会报错

[复制链接]
发表于 2020-12-22 12:17:14 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

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参数传入进来

最佳答案
2020-12-22 12:22:31
字符串前面加个r防止转义,报错都给出建议了,你都不看
root_pattern=r'<div class="DyListCover-info">[\d\D]</div>'
● spider.py - 新python - Visual Studio Code 2020_12_22 12_04_02.png
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-12-22 12:22:31 From FishC Mobile | 显示全部楼层    本楼为最佳答案   
字符串前面加个r防止转义,报错都给出建议了,你都不看
root_pattern=r'<div class="DyListCover-info">[\d\D]</div>'
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-12-22 12:58:56 | 显示全部楼层
hrp 发表于 2020-12-22 12:22
字符串前面加个r防止转义,报错都给出建议了,你都不看
root_pattern=r'[\d\D]'

谢谢谢谢   我忘了r有防转义的意思了,我一看这个r,啥玩意
初学爬虫
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-17 00:24

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表