summaryrefslogtreecommitdiffstats
path: root/examples/prompts/accept-default.py
blob: 311ef46c96fc694cfdc51aa5185b3134d5773368 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env python
"""
Example of `accept_default`, a way to automatically accept the input that the
user typed without allowing him/her to edit it.

This should display the prompt with all the formatting like usual, but not
allow any editing.
"""
from prompt_toolkit import HTML, prompt

if __name__ == "__main__":
    answer = prompt(
        HTML("<b>Type <u>some input</u>: </b>"), accept_default=True, default="test"
    )

    print("You said: %s" % answer)