-1

I need a python tool to stress a web application built in python. In summary, the application receives request as text or text files sent by customers and returns the results. What I need is to simulate these requests simultaneously. Maybe 10, 20, 50 requests at the same time. I've been reviewing the FunkLoad testing tool, but I'm not sure if it could serve for my purposes. I've also taken a look at PythonTestingToolsTaxonomy but I'm a bit lost. Any ideas??

Firefly
  • 449
  • 5
  • 20

1 Answers1

0

What about Apache Benchmark? The utility can perform 10, 20, 50 concurrent requests, looks that exactly what you need.

Here is the example:

ab -n 100 -c 10 "http://localhost:8080"

See https://en.wikipedia.org/wiki/ApacheBench if you're interested.

Viach Kakovskyi
  • 1,487
  • 1
  • 14
  • 21