summaryrefslogtreecommitdiffstats
path: root/examples/prompts/get-input-with-default.py
blob: 34c233bfec6dd09f75f6b7ea4686832a585d4c3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env python
"""
Example of a call to `prompt` with a default value.
The input is pre-filled, but the user can still edit the default.
"""
from __future__ import unicode_literals
from prompt_toolkit import prompt
import getpass

if __name__ == '__main__':
    answer = prompt('What is your name: ', default='%s' % getpass.getuser())
    print('You said: %s' % answer)