gpt4 book ai didi

python - 请求 - 多个代理 python

转载 作者:行者123 更新时间:2023-12-03 20:57:50 25 4
gpt4 key购买 nike

我想使用多个 http代理。根据文档,我找不到传递多个代理的方法。

这是我的代码:-

proxies = {
'http': [List of IPs]
}
r = requests.get('http://10.1.7.70:8000', proxies=proxies)

运行此代码时,我收到以下错误:-
TypeError: unhashable type: 'list'

如何使用多个代理?

最佳答案

如果您的目标是从列表中选择一个代理以用于请求:

import random
import requests

proxies_list = [List of IPs]

proxies = {
'http': random.choice(proxies_list)
}
r = requests.get('http://10.1.7.70:8000', proxies=proxies)

如果要链式代理,requests 做不到,需要手工来做。

关于python - 请求 - 多个代理 python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36446657/

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