Skip to content

Text

A text input prompt that allows the user to enter a string.

Example

Example

from inquirer_textual import prompts

if __name__ == '__main__':
    answer = prompts.text('Name:')
    print(answer)