我正在尝试编写脚本,以从API获取数据并连接到API。我不明白为什么它在一个线程中会很好地工作,并在尝试连接到多个线程中的代理时会导致ProxyError
for i in range(4):
thread = threading.Thread(target=parse_user_search, args = (access_tokens,proxy_list,progress,country,birth_day,proxy))
thread.start()
requests.get(("some-url",proxies=proxy))
预期:获取数据并写入文件 实际:ProxyError