Python Forum

Full Version: getpass
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
What's the best way to install getpass?
Not sure what you mean by "install". It should be part of a standard python distribution. You can access it from within your code by importing it.

>>> import getpass
>>> getpass.getpass()
Password:
'foobar'