https://github.com/ellipticobj/random-module
an open source python module to get random numbers from random.org
https://github.com/ellipticobj/random-module
Last synced: 3 months ago
JSON representation
an open source python module to get random numbers from random.org
- Host: GitHub
- URL: https://github.com/ellipticobj/random-module
- Owner: ellipticobj
- License: gpl-3.0
- Created: 2025-01-07T02:40:54.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-30T15:23:45.000Z (about 1 year ago)
- Last Synced: 2025-08-20T01:31:30.200Z (10 months ago)
- Language: Python
- Size: 254 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# random
a python module to get random numbers from random.org
## basic implementation
install the module
```bash
pip3 install randomorg_api
```
import the module
```python
from randomorg_api import Generator
```
initialize the generator
```python
randomgen = Generator(apikey = "API_KEY_HERE")
```
generate a number
```python
randomgen.randint()
```
for documentation go [here](http://github.com/ellipticobj/random-module/DOCUMENTATION.md)