summaryrefslogtreecommitdiffstats
path: root/examples/prompts/get-password.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/prompts/get-password.py')
-rwxr-xr-xexamples/prompts/get-password.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/examples/prompts/get-password.py b/examples/prompts/get-password.py
new file mode 100755
index 0000000..1c9517c
--- /dev/null
+++ b/examples/prompts/get-password.py
@@ -0,0 +1,6 @@
+#!/usr/bin/env python
+from prompt_toolkit import prompt
+
+if __name__ == "__main__":
+ password = prompt("Password: ", is_password=True)
+ print("You said: %s" % password)