An open API service indexing awesome lists of open source software.

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

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)