Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mainanick/lavarand
Randomness
https://github.com/mainanick/lavarand
Last synced: 2 months ago
JSON representation
Randomness
- Host: GitHub
- URL: https://github.com/mainanick/lavarand
- Owner: mainanick
- License: wtfpl
- Created: 2018-10-16T17:08:44.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-28T11:28:33.000Z (about 6 years ago)
- Last Synced: 2024-08-15T10:34:17.275Z (5 months ago)
- Language: Python
- Size: 8.79 KB
- Stars: 4
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
### [Randomness-101-lavarand-in-production](https://blog.cloudflare.com/randomness-101-lavarand-in-production/)
https://csprng.xyz/
```
pip install lavarand
``````python
>>> import lavarand
>>> random = lavarand.random()
>>> print(random)
"hp7RWuKfuUHWXvAQTUEtRits0chzZWHDjP58nVmwOZM=">>> random = lavarand.random(size=50)
>>> print(random)
"F9Pziq9ZxBjntW2OYeADSMnpBDWtRI8txyZwH/JuzMpirs0cFh+eGiu3JGd4PVsDq+8=="```