摘要: import requests url = 'https://www.***.com/downloadFile' r = requests.get(url) fp = open("test.xls", "wb") fp.write(r.content) fp.close() cookie略,根据实际 阅读全文
posted @ 2021-06-03 16:36 OTAKU_nicole 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 抓到页面请求可以看到这些,使用files,cookie省略,根据实际情况添加 import requests url = "https://www.***.com/uploadExcel.json" # => 打开上传文件并且加入文件相关参数 file = { 'excel': open(r'C:\ 阅读全文
posted @ 2021-06-03 14:53 OTAKU_nicole 阅读(217) 评论(0) 推荐(0) 编辑