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

https://github.com/dever-m/dice_roller


https://github.com/dever-m/dice_roller

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# How to use this
```python
import random_dice_roller as rdr

rdr.roll_dicev()
print(rdr.roll_dice_MaxMin(minimum_number=1,maximum_number=100)) # for any numbers (returns a rand num in int)
print(rdr.roll_dice()) # to roll the normal dice(1 to 6) in a number format
``