gpt4 book ai didi

python - Python 请求中的代理

转载 作者:太空宇宙 更新时间:2023-11-04 09:39:24 27 4
gpt4 key购买 nike

<分区>

所以我使用 Proxy Broker 来抓取一些代理。有时代理在被删除时就死了,所以我想在使用它们之前检查它们。因此,我使用 Python Requests 编写了一个程序来检查它们。在这里:

import time
import random
import requests
lines = open('not_checked.txt').read().splitlines()
check =random.choice(lines)
yaya = {
check
}
for x in range(0 , 10):
requests.get('https://reg.ebay.com/reg/PartialReg?ru=https%3A%2F%2Fwww.ebay.com%2F': proxies=yaya)
r.status_code
print(status_code)

if status_code == 200:
f=open("checked_proxies.txt", "a+")
f.write(proxies)
else:
time.sleep(.001)

然而,这会返回“set object has no attribute get”。我在网上查看错误,它说这是因为我使用了逗号而不是冒号。于是我尝试了:

requests.get('https://reg.ebay.com/reg/PartialReg?ru=https%3A%2F%2Fwww.ebay.com%2F': proxies=yaya)

得到一个语法错误。到底是怎么回事?

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