I am trying to build a Python application for running in various platforms, for that I am adding command line options for parameters, two of which is username and password. For password, I don't want it to be echoed on screen while someone is entering it, I am using argparse
Sample code-
parser.add_argument('--username', help='Your email address')
parser.add_argument('--password', help='Your password')
Now what parameter/action I should add to make password invisible/not echoed on screen while entering it?