import requests

url = 'https://www.***.com/downloadFile'
r = requests.get(url)

fp = open("test.xls", "wb")
fp.write(r.content)
fp.close()

cookie略,根据实际情况传

相关文章:

  • 2022-12-23
  • 2021-12-04
  • 2022-12-23
  • 2021-09-26
猜你喜欢
  • 2022-12-23
  • 2021-12-30
  • 2021-09-27
  • 2021-12-27
  • 2022-12-23
  • 2021-11-30
相关资源
相似解决方案