Skip to content

Checkbox

A checkbox widget that allows multiple selections from a list of choices.

Example

Example

from inquirer_textual import prompts

if __name__ == '__main__':
    answer = prompts.checkbox("Planets:", choices=[
        'Mercury', 'Venus', 'Earth', 'Mars', 'Jupiter', 'Saturn', 
        'Uranus', 'Neptune'
    ])
    print(answer)