Auth_url isn't defined here but in the longer version it is and successfully logs in. The issue is, the input box that appears does not "asterisk out" the password. Is there a simple way to correct this issue? Thanks
from suds.client import Client
from suds.xsd.doctor import Import, ImportDoctor
from suds.sax.element import Element
import getpass
user = "my username"
pw = getpass.getpass("Password: ")
auth_client = Client(auth_url)
cookie = auth_client.service.authenticate(user, pw)