发布时间:2019-09-01 10:53:28编辑:auto阅读(1707)
#coding=utf-8
import httplib,urllib
from time import ctime
import threading
import csv
postJson={
}
#定义需要进行发送的数据
params = urllib.urlencode(postJson);
#定义一些文件头
headers = {"Content-Type":"application/x-www-form-urlencoded",
"Connection":"Keep-Alive"
}
#创建请求函数
def Clean():
#接口的url
requrl =""
#连接服务器
conn = httplib.HTTPConnection("")
#发送请求
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()
上一篇: python编写的多线程接口并发测试
下一篇: 【python】代码换行的几种方法
47868
46434
37321
34767
29337
25999
24952
19970
19568
18056
5811°
6436°
5953°
5979°
7083°
5929°
5970°
6462°
6427°
7804°