mirror of
https://github.com/romanz/amodem.git
synced 2026-02-07 09:28:02 +08:00
7 lines
146 B
Python
7 lines
146 B
Python
"""Simple, cross-platform UI for entering a PIN/passhprase."""
|
|
import sys
|
|
|
|
import pymsgbox
|
|
|
|
sys.stdout.write(pymsgbox.password(sys.stdin.read()))
|