Author: Andela Kenya
A randomizer package for shuffling.
To install use pip: [COMING SOON]
$ pip install shufflebox
Or clone the repo:
$ git clone https://github.com/Habu-Kagumba/shufflebox.git
Install locally:
$ python setup.py install
Or install in project environment:
# Inside environment, navigate to shufflebox directory
$ pip install -e .
TBD
from shufflebox import Randomizer
# create the dataset
items = list(range(90))
rand = Randomizer(items)
# get random item
rand.get_random()
# create groups of 4 items
rand.create_groups(4)