prompt-toolkit/examples/dialogs/password_dialog.py
Daniel Baumann f9d8bce83f
Adding upstream version 3.0.46.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-05-12 17:47:49 +02:00

20 lines
351 B
Python
Executable file

#!/usr/bin/env python
"""
Example of an password input dialog.
"""
from prompt_toolkit.shortcuts import input_dialog
def main():
result = input_dialog(
title="Password dialog example",
text="Please type your password:",
password=True,
).run()
print(f"Result = {result}")
if __name__ == "__main__":
main()