Metadata-Version: 2.1
Name: true-random
Version: 1.1.6
Summary: A quantum alternative for standard Python random package
Home-page: https://github.com/peb-8/true-random
Author: Pierre-Emmanuel Brian
Author-email: peb8@outlook.fr
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/peb-8/true-random/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# A quantum alternative for standard Python random package


## Installation : `pip install true-random`

## Features :
- true_randint
- true_choice
- true_shuffle
- true_password

## Generate a strong password :
```python
from truerandom import true_password

print(true_password(length=12))
```
`output : Jjr1i[h*vtsq`

## Generate a CSV file of strong passwords :

```
python -m truerandom --csv=output.csv --length=12 --nb=100
```


