20 lines
351 B
Python
Executable file
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()
|