当前位置:   article > 正文

使用python请求接口(可进行并发测试)_python并发请求接口

python并发请求接口

python可以支持多个线程,所以可以利用python对写好的接口进行并发测试。请求接口代码如下:

  1. #coding=utf-8
  2. import requests
  3. import json
  4. import threading
  5. import time
  6. import uuid
  7. class postrequests():
  8. def __init__(self):
  9. self.url = 'https://***.*****.com/user/user/login' #请求链接
  10. self.data = {'phone': '176*****286','code':'12***6'} #传递参数
  11. self.headers = {'content-type': 'application/json'} #请求头
  12. self.data = json.dumps(self.data)
  13. def post(self):
  14. try:
  15. r = requests.post(self.url, self.data, headers=self.headers)
  16. print(r.text)
  17. except Exception as e:
  18. print(e)
  19. def kquan_bf():
  20. login = postrequests()
  21. return login.post()
  22. try:
  23. i = 0
  24. # 开启线程数目
  25. tasks_number = 1
  26. print('测试启动')
  27. time1 = time.perf_counter()
  28. while i < tasks_number:
  29. t = threading.Thread(target=kquan_bf)
  30. t.start()
  31. i +=1
  32. time2 = time.perf_counter()
  33. times = time2 - time1
  34. print(times/tasks_number) #每次请求用时
  35. except Exception as e:
  36. print(e) #请求结果

结果显示:

  1. 测试启动
  2. 0.0005290000000000017
  3. >>> {"code":0,"message":"操作成功","data":{"详细数据"}

若接口中做了并发处理,同时开启多数线程时,就会触发代码中的并发处理逻辑(如提示:服务器繁忙,请稍后再试!)

本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号