:mod:`getpass` ============== .. py:module:: getpass .. autoapi-nested-parse:: Getpass Module This module provides a way to get input from user without echoing it. .. raw:: html

Available on these boards

.. py:function:: getpass(prompt: Optional[str] = 'Password: ', stream: Optional[io.FileIO] = None) -> str Prompt the user without echoing. :param str prompt: The user is prompted using the string ``prompt``, which defaults to ``'Password: '``. :param io.FileIO stream: The ``prompt`` is written to the file-like object ``stream`` if provided.