You are not logged in.
so a user can enter something from standard in and echo back *'s or nothing at all instead of printing to the screen their actuall input. Like entering your password when you login.
Offline
Will the getpass module work for you?
>>> import getpass
>>> getpass.getpass()
Password:
'Secr3t'
>>> getpass.getpass("Enter your password : ")
Enter your password :
'Secr3t'
>>>
Offline
Yes. Exactly what I was looking for, thanks!
Offline