主题
locust
from locust import HttpUser, task class Demo(HttpUser): @task def demo(self): self.client.get("/")
locust -f locustfile.py
打开 http://localhost:8089/ 即可开始使用