python 中的请求收到错误 WSAECONNRESET
requests in python get error WSAECONNRESET
我正在尝试通过以下请求获取汇率:
r = requests.get('https://www.boi.org.il/currency.xml?curr=01')
我遇到一个错误:
{ConnectionError}('Connection aborted.', OSError("(10054, 'WSAECONNRESET')"))
该错误的解决方案是什么?
服务器检查 valid/supported 个浏览器。您需要通过它接受的一个,例如
import requests
headers = {'User-Agent': 'Safari/537.36'}
r = requests.get('https://www.boi.org.il/currency.xml?curr=01', headers=headers)
我正在尝试通过以下请求获取汇率:
r = requests.get('https://www.boi.org.il/currency.xml?curr=01')
我遇到一个错误: {ConnectionError}('Connection aborted.', OSError("(10054, 'WSAECONNRESET')"))
该错误的解决方案是什么?
服务器检查 valid/supported 个浏览器。您需要通过它接受的一个,例如
import requests
headers = {'User-Agent': 'Safari/537.36'}
r = requests.get('https://www.boi.org.il/currency.xml?curr=01', headers=headers)