Y
Hacker News
new
|
ask
|
show
|
jobs
by
d503
5119 days ago
If you're paranoid about shoulder-surfing you can use getpass to hide your password as you type it in.
>>> import getpass >>> password = getpass.getpass('Password: ')
http://docs.python.org/library/getpass.html
1 comments
grantismo
5119 days ago
Command line utility I wrote which uses getpass:
http://dpaste.com/hold/756011/
link