我尝试编写脚本以通过受密码保护的网址在本地保存pdf。该文件正确保存到本地目录,但在尝试打开pdf(不支持或损坏的文件)时出现错误消息。
关于可能解决方案的想法?
import requests
r=requests.get('https://www.website.com/export-pdf',verify=False, auth=('user','pass'))
with open('file_name.pdf, 'wb') as fd:
for chunk in r.iter_content(chunk_size=1024):
fd.write(chunk)