Python3----多线程并发post请求

# !bin/usr/env python3
# coding=utf-8
import requests
import json
import threading


def call_post(n):
    url='api/send'
    data= { "message":"concurrent22"}
    r = requests.post(url,data=json.dumps(data),headers={'Content-Type':'application/json'})
    print('线程'+ str(n) + ':' + str(r.status_code) ) # n为并发数
    print (r.text)

def thread(n):
    threads = []
    for i in range(0,n):   # n 为并发数
        t = threading.Thread(target=call_post,args=(i,))  
# 针对函数创建线程,target为调用的并发函数,args为调用函数的参数,该参数必须为数组,所以这里加了逗号,如果不加就不是数组,运行会报错
        threads.append(t)    # 添加线程到线程组
    print (threads)

    for t in threads:
        t.start()          # 开启线程
    for t in threads:
        t.join()           # 等待所有线程终止
thread (3)

 

你可能感兴趣的:(学习笔记)