python实现获取接口开始请求时间点
2022/2/23 17:22:09
本文主要是介绍python实现获取接口开始请求时间点,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
url = "http://xxx.xxx.xxx/job/xxx_{}_xxx/xxx?".format(typename) headers = { 'User-Agent':'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1 Safari/605.1.15', } r = requests.get(url=url,headers=headers,params=params) h_content = r.headers # 获取接口请求时间 tt = h_content['Date'].split(' ') d = tt[1] m = datetime.datetime.strptime(tt[2],'%b').month if len(str(m))==1: m = '0'+str(m) t_list = tt[4].split(':') h = int(t_list[0])+8 M = t_list[1] s = t_list[2] t1 = str(m)+str(d)+str(h)+str(M) print(t1,s,r.elapsed.total_seconds())
这篇关于python实现获取接口开始请求时间点的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-03用FastAPI掌握Python异步IO:轻松实现高并发网络请求处理
- 2025-01-02封装学习:Python面向对象编程基础教程
- 2024-12-28Python编程基础教程
- 2024-12-27Python编程入门指南
- 2024-12-27Python编程基础
- 2024-12-27Python编程基础教程
- 2024-12-27Python编程基础指南
- 2024-12-24Python编程入门指南
- 2024-12-24Python编程基础入门
- 2024-12-24Python编程基础:变量与数据类型