当前位置:   article > 正文

python压力测试_Python 压力测试脚本

python压力测试脚本设计

目的是写个脚本,起多线程去call一个接口,来测试一个并发问题。

实现方案是将接口做到了一个页面中,用python的http get请求来访问查询。import urllib

import threading

from time import ctime,sleep

def t1(func):

for i in range(10):

f=urllib.urlopen("http://www.mystation.com/myinterface.html?param=value")

s=f.read()

print "round:%s, tread number:%s, returnValue:%s,time:%s" % (i, func, s, ctime())

sleep(1)

if __name__ == '__main__':

threads=[]

for i in range(100):

name = "t%s" % (i)

name = threading.Thread(target=t1,args=(i,))

threads.append(name)

for t in threads:

t.setDaemon(True)

t.start()

t.join()

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/1004787
推荐阅读
相关标签
  

闽ICP备14008679号