接口
默默踹
学习学习学习
展开
-
locust http 压测
以前玩过 现在发现变化有点大哎# -*- coding: utf-8 -*-# create time : 2021-03-23 10:43# author : CY# file : locust_face.py# modify time:import osimport randomimport requestsfrom locust import HttpUser, TaskSet, task, betweenfrom Page.api.quick_registe.原创 2021-03-24 09:56:58 · 689 阅读 · 1 评论 -
python3 multi threading 调用上传图片的api 笔记
小伙伴 并发上传 图片有问题 所以看了下threadingdef thread_work(name): print('a is run %s is %s' % (name, threading.current_thread())) print('start') for i in range(10): print(i) sleep(0.3) ...原创 2018-05-30 01:32:38 · 500 阅读 · 0 评论 -
python3 multiprocessing 调用上传图片api 笔记
上次是用的 多线程 上传 图片 我要改为用多进程 试一试然后 # -*- coding:utf-8 *-# auth : cy# update :import getpassimport osimport randomimport multiprocessingfrom configparser import ConfigParserfrom time import time, s...原创 2018-05-31 09:38:41 · 492 阅读 · 0 评论 -
locust websocket 压测
1、首先建立一个websocket服务端class LocustWebSocketClient(Locust): def __init__(self, ws_url='per.zldda.cn', callback=None): super().__init__() self.ws = websocket.create_connection("wss:...原创 2018-11-19 11:05:04 · 2845 阅读 · 2 评论