我该如何将新的蜘蛛ARG添加到我自己的纸杯/Zyte模板中

发布于 2025-01-21 11:14:35 字数 52 浏览 0 评论 0原文

我正在研究一个付费代理蜘蛛模板,并希望能够在命令行上通过新的论点进行擦伤轨道。我该怎么做?

I am working on a paid proxy spider template and would like the ability to pass in a new argument on the command line for a Scrapy crawler. How can I do that?

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

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

发布评论

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

评论(1

街角迷惘 2025-01-28 11:14:35

这是可以通过在蜘蛛的__init __-方法中使用kwargs来实现的:

import scrapy


class YourSpider(scrapy.Spider):
    name = your_spider

    def __init__(self, *args, **kwargs):
        super(YourSpider, self).__init__(*args, **kwargs)
        self.your_arg = kwargs.get("your_cmd_arg", 42)

现在可以按以下方式调用蜘蛛:
scrapy crawl your_spider -A yous_cmd_arg = foo

有关该主题的更多信息,请随时检查此页面 scrapy文档中。

This is achievable by using kwargs in your spider's __init__-Method:

import scrapy


class YourSpider(scrapy.Spider):
    name = your_spider

    def __init__(self, *args, **kwargs):
        super(YourSpider, self).__init__(*args, **kwargs)
        self.your_arg = kwargs.get("your_cmd_arg", 42)

Now it would be possible to call the spider as follows:
scrapy crawl your_spider -a your_cmd_arg=foo

For more information on the topic, feel free to check this page in the Scrapy documentation.

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