Skip to content

Bullet

bullet.Check() implements a checkbox widget:

cli = bullet.Check(prompt = "Choose from the following items: ", choices=['pepperoni','sausage','green peppers'])
bullet.Bullet() implements a radio button widget:
cli = bullet.Bullet(prompt = "Choose from the following items: ", choices=['red','white','blue'])
The resulting object then exposes a launch() method.
cli.launch()