Python使用requests時遇到Failed to establish a new connection解决方法

Python使用requests時遇到Failed to establish a new connection
解决方法:
但是程式邏輯的關係我會在短時間使用多次requests.post
其結果就是跳出了Failed to establish a new connection這樣一個錯誤
google一下之後,一個根本的解決方法是在發起一個http request之後設定header將其关闭
requests..get("http://...", headers={'Connection':'close'})
requests..post("http://...", headers={'Connection':'close'})
aax1=requests.get(urla1,headers=headt)
requests.get(urla1,headers=headclose)

posted @ 2023-02-07 08:51  myrj  阅读(968)  评论(0编辑  收藏  举报