Metadata-Version: 2.1
Name: performance-tester
Version: 0.1.0.dev4
Summary: Software for testing performance
Author: junnaka51 team
License: Apache 2.0
Project-URL: homepage, https://github.com/junnaka51/performance_tester
Project-URL: repository, https://github.com/junnaka51/performance_tester
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# performance_tester

Collection of modules for testing performance.

## Installation
Command
```bash
pip install git+https://github.com/junnaka51/performance_tester.git
```
or add the following line in Pipfile if you use Pipenv
```
[dev-packages]
performance_tester = {git = "https://github.com/junnaka51/performance_tester.git"}
```

## Examples
```py
from performance_tester import measure_execution_time

@measure_execution_time(100)
def adder(a, b): # the function that you want to check the performance
    c = a + b
    return c

adder(1, 2)
```
Output:
```
100 loops:
mean: 3.573999492800795e-07 sec.
std : 1.1951605991912876e-07 sec.
max : 1.4500001270789653e-06 sec.
min : 3.199984348611906e-07 sec.
```
