Python Forum
getpass - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: getpass (/thread-30970.html)



getpass - ComputerAstronaut - Nov-16-2020

What's the best way to install getpass?


RE: getpass - bowlofred - Nov-16-2020

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'