Skip to content

Select

A select widget that allows a single selection from a list of choices.

Example

Example

from inquirer_textual import prompts

if __name__ == '__main__':
    result = prompts.select('Planet:', ['Mercury', 'Venus', 'Earth', 'Mars',
        'Jupiter', 'Saturn', 'Uranus', 'Neptune'], mandatory=True)
    print(result)