自己写一个脚本,统计调用200次接口的请求时长。

# -*- coding=utf-8 -*-
import os
import requests
import time


url = "http://xxxxxxxxxxxxxxx"

def run_api():
# 调用api
response = requests.get(url)


if __name__ == "__main__":
start = time.time()
for i in range(200):
run_api()
end = time.time()
print end - start


requests模块还有很多用法,有兴趣的可以自己查一下文档用法。




版权声明:本文为yuzhaoblog原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/yuzhaoblog/p/9640926.html