python 使用requests时提示Process finished with exit code -1073741819 (0xC0000005)

我这里是因为访问的https连接,所以不验证证书或者指定证书路径即可。

requests.post(loginUrl,data=formData,headers=headers,verify=False)

requests.get(loginUrl,data=formData,headers=headers,cert=('/path/server.crt', '/path/key'))

原文地址:https://www.cnblogs.com/thewindkee/p/12873214.html