抓取在一个引号内包含 href 的链接

发布于 2024-12-26 23:06:39 字数 217 浏览 0 评论 0原文

我使用 Scrapy 抓取一些网站,但在 href 的链接中遇到问题,其中 href 的单引号 href=' ' 而不是双引号 href=" "< /代码>。

当我允许使用 allow() 抓取所有链接时,结果将仅包含用双引号形成的链接。我怎样才能克服这个问题?

I use Scrapy to crawl some websites and I have problem with links where href's have one quote href=' ' rather than double quotes href=" ".

And when I allow all links to be crawled with allow(), the result will only contain links formed with double quotes. How can I overcome this problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

北音执念 2025-01-02 23:06:39

您是否使用 scrapy.contrib_exp.crawlspider.rules.RuleSgmlLinkExtractor ?我认为单引号或双引号并不重要。如果您希望提取所有链接并将其与该特定规则关联,请使用

Rule(SgmlLinkExtractor(allow=('.*', )), callback='parse_item')

allow=() 引用空元组,因此不会匹配任何url。

Are you using scrapy.contrib_exp.crawlspider.rules.Rule and SgmlLinkExtractor? I do n't think single quotes or double quotes matter. If you want all links to be extracted and associated with that particular rule, use

Rule(SgmlLinkExtractor(allow=('.*', )), callback='parse_item')

as allow=() refers to empty tuple and hence no urls will be matched.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文