Scrapy中报错URLWarning: allowed

编程入门 行业动态 更新时间:2024-10-24 06:35:29

Scrapy中<a href=https://www.elefans.com/category/jswz/34/1771188.html style=报错URLWarning: allowed"/>

Scrapy中报错URLWarning: allowed

现象

源代码如下

class HrSpider4Spider(CrawlSpider):"""CrawlSpider类"""name = 'hr_spider4'allowed_domains = ['']  # 留意此处是一个完整的URL地址start_urls = [".php?&start=0"]rules = (Rule(LinkExtractor(allow=r'position.php\?&start=\d+')), # 默认follow参数为True,表示继续提取Rule(LinkExtractor(allow=r'position_detail\.php\?id=\d+'), callback="parse_item", follow=False))def parse_item(self, response):item = PositionItem()item['position_duty'] = response.xpath("//ul[@class='squareli']")[0].xpath(".//li/text()").extract()item['position_duty'] = response.xpath("//ul[@class='squareli']")[1].xpath(".//li/text()").extract()yield item

在运行该爬虫的时候会报错:
URLWarning: allowed_domains accepts only domains, not URLs.
原因显而易见: 允许范围接收的是范围, 而非URL地址.

解决方法

将第4行代码修改为

allowed_domains = ['hr.tencent'] 

也就是仅保留后缀.

更多推荐

Scrapy中报错URLWarning: allowed

本文发布于:2024-03-13 09:38:49,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1733683.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:报错   Scrapy   allowed   URLWarning

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!