request请求模拟导出文件

Posted kaibindirver

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了request请求模拟导出文件相关的知识,希望对你有一定的参考价值。

ui界面:

技术图片

 

 

实现代码:

def export(self,host):
‘‘‘导出课时券记录‘‘‘
#测试接口
  url=‘https://‘+host+r‘/ticket-record/export?timespan=1568010189362‘
  #请求头
  heard=self.public()
  #发送请求
  r=self.codemao.request2.get(url,headers=heard)
  # 输出请求时长
  print ‘请求时长:‘,r.elapsed.total_seconds()
  print r.content
  fp = open("yoyo.xls", "wb")
  fp.write(r.content)
  fp.close()

参考:https://www.cnblogs.com/guo2733/p/10542736.html

 

以上是关于request请求模拟导出文件的主要内容,如果未能解决你的问题,请参考以下文章

python利用requests模拟http请求及请求头

如何使用 proxyquire 模拟“请求”

使用节点请求将Cookie Jar导出为JSON

模拟axios的创建[ 实现调用axios()自身发送请求或调用属性的方法发送请求axios.request() ]

Laravel PHPUnit 模拟请求

web爬虫,requests请求