Application for retrieving web load statistics
Project description
thassault
A CLI load testing tool for getting website data.
Installation
Install using pip
:
$ pip install thassault
Usage
The simplest usage of thassault
requires only a URL to test against and 500 requests synchronously (one at a time). This is what it would look like:
$ thassault https://example.com
.... Done!
--- Results ---
Successful requests 500
Slowest 0.010s
Fastest 0.001s
Average 0.003s
Total time 0.620s
Requests Per Minute 48360
Requests Per Second 806
If we want to add concurrency, we'll use the -c
option, and we can use the -r
option to specify how many requests that we'd like to make:
$ thassault -r 3000 -c 10 https://example.com
.... Done!
--- Results ---
Successful requests 3000
Slowest 0.010s
Fastest 0.001s
Average 0.003s
Total time 2.400s
Requests Per Minute 90000
Requests Per Second 1250
If you'd like to see these results in JSON format, you can use the -j
option with a path to a JSON file:
$ thassault -r 3000 -c 10 -j output.json https://example.com
.... Done!
Development
For working on assult
, you'll need to have Python >= 3.7 (because we use asyncio
) and pipenv
installed. With those installed, run the following command to create a virtualenv for the project and fetch the dependencies:
$ pipenv install --dev
...
Next, activate the virtualenv and get to work:
$ pipenv shell
...
(thassault) $
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for thassault-0.1.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e533c1032d3722cce2056389bb92e563a280cb862df1bdcca5f00af7c6b27eaf |
|
MD5 | 75ccfc368b2b8c2f0eebc241cf775df4 |
|
BLAKE2b-256 | bb49636be6df8206e2ca7e996fec42e87faee7dbfc82b9f642ee38c8942ab8f1 |