summaryrefslogtreecommitdiffstats
path: root/examples/prompts/get-input.py
blob: 6db7e2c49e1cba7035c6bf95fd6f2c86440e0d33 (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env python
"""
The most simple prompt example.
"""

from prompt_toolkit import prompt

if __name__ == "__main__":
    answer = prompt("Give me some input: ")
    print(f"You said: {answer}")