How to measure server response time for Python requests POST-request(如何测量 Python 请求 POST 请求的服务器响应时间)
问题描述
我像这样创建 requests
POST 请求,我在其中指定超时阈值:
I create requests
POST-requests like this, where I specify timeout threshold:
response = requests.post(url, data=post_fields, timeout=timeout)
但是,为了确定一个好的"阈值,我想提前对服务器响应时间进行基准测试.
However, to determine a "good" threshold value, I would like to benchmark the server response time in advance.
如何计算服务器的最小和最大响应时间?
How do I compute the minimum and maximum response times for the server?
推荐答案
requests.post()
(和requests.get()
etc.) 有一个名为 elapsed
的属性,它提供发送 Request
和收到 Response
之间的时间差.要以秒为单位获取增量,请使用 total_seconds()
方法:
The Response
object returned by requests.post()
(and requests.get()
etc.) has a property called elapsed
, which provides the time delta between the Request
was sent and the Response
was received. To get the delta in seconds, use the total_seconds()
method:
response = requests.post(url, data=post_fields, timeout=timeout)
print(response.elapsed.total_seconds())
注意 requests.post()
是一个同步操作,这意味着它阻塞直到收到 Response
.
Note that requests.post()
is a synchronous operation, which means that it blocks until the Response
is received.
这篇关于如何测量 Python 请求 POST 请求的服务器响应时间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何测量 Python 请求 POST 请求的服务器响应时间
基础教程推荐
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 筛选NumPy数组 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01