gpt4 book ai didi

python-2.7 - 如何使用带有URL和基本身份验证凭据的scrapy shell?

转载 作者:行者123 更新时间:2023-12-04 16:28:39 24 4
gpt4 key购买 nike

我想使用scrapy shell并测试需要基本身份验证凭据的URL的响应数据。我试图检查草率的shell文档,但在那儿找不到它。

我尝试了scrapy shell 'http://user:pwd@abc.com',但是没有用。
有人知道我能做到吗?

最佳答案

如果您只想使用 shell ,则可以执行以下操作:

$ scrapy shell

并在 shell 内:
>> from w3lib.http import basic_auth_header
>> from scrapy import Request
>> auth = basic_auth_header(your_user, your_password)
>> req = Request(url="http://example.com", headers={'Authorization': auth})
>> fetch(req)

因为 fetch使用当前请求来更新Shell session 。

关于python-2.7 - 如何使用带有URL和基本身份验证凭据的scrapy shell?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42824249/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com