gpt4 book ai didi

python - 如何在 python 3 中发出 https 请求

转载 作者:太空狗 更新时间:2023-10-30 01:11:42 25 4
gpt4 key购买 nike

我想使用 https 协议(protocol)从我的服务器下载文件。我应该怎么做呢?这是我使用 http 的基本代码

response=requests.get('http://url',stream='True')

handle=open('dest_file.txt','wb')
for chunk in response.iter_content(chunk_size=512):
if chunk: # filter out keep-alive new chunks
handle.write(chunk)

handle.close()

请求模块也可以用于 https 吗?

最佳答案

根据 http://docs.python-requests.org/en/master/user/advanced/#ssl-cert-verification

response=requests.get('https://url', stream='True', verify='your certificate.crt')

handle=open('dest_file.txt','wb')
for chunk in response.iter_content(chunk_size=512):
if chunk: # filter out keep-alive new chunks
handle.write(chunk)

handle.close()

关于python - 如何在 python 3 中发出 https 请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48642110/

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