多平台统一管理软件接口,如何实现多平台统一管理软件接口
411
2022-08-29
python实现多线程post方法进行压测脚本模板(python并发测试脚本)
#coding=utf-8import time import ctime import threading import csv postJson={ }#定义需要进行发送的数据params = urllib.urlencode(postJson);#定义一些文件头headers = {"Content-Type":"application/x- "Connection":"Keep-Alive" }#创建请求函数def Clean(): #接口的url requrl ="" #连接服务器 conn = #发送请求 conn.request(method="POST",url=requrl,body=params,headers=headers) #获取请求响应 response=conn.getresponse() #打印请求状态 print response.status #创建数组存放线程 threads=[] #创建100个线程for i in range(100): #针对函数创建线程 t=threading.Thread(target=Clean,args=()) #把创建的线程加入线程组 threads.append(t) print 'start:', ctime() if __name__ == '__main__': #启动线程 for i in threads: i.start() #keep thread for i in threads: i.join() print 'end:', ctime() #Url.close()
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~