Metadata-Version: 2.1
Name: jitt
Version: 0.1.0
Summary: Takes a baseline delay value, a percentage to calculate the min/max for allowed jitter values, and a desired precision; returns a float.
Home-page: https://github.com/bonifield/jitt
Author: James Bonifield
Author-email: bonifield.tools@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

# jitt
simple jitter tool

Takes a baseline delay value, a percentage to calculate the min/max for allowed jitter values, and a desired precision; returns a float.

### Installation
```
pip install jitt
python3 -m pip install jitt
```

### Usage
```
from jitt import Jitt
j = Jitt(delay=10.5, percent=25, precision=3).jitter
print(j)

# misc results for above values (min: 7.875 / max: 13.125)
# 8.177
# 12.975
# 10.565
# 9.022
# 11.43 (trailing zero is truncated)
```

