requests-kerberos · PyPI
https://pypi.org/project/requests-kerberos04.12.2021 · This will cause requests_kerberos to attempt mutual authentication if the server advertises that it supports it, and cause a failure if authentication fails, but not if the server does not support it at all. DISABLED While we don’t recommend it, if you’d prefer to never attempt mutual authentication, you can do that as well:
requests-kerberos · PyPI
pypi.org › project › requests-kerberosDec 04, 2021 · requests Kerberos/GSSAPI authentication library. Requests is an HTTP library, written in Python, for human beings. This library adds optional Kerberos/GSSAPI authentication support and supports mutual authentication. Basic GET usage: >>> import requests >>> from requests_kerberos import HTTPKerberosAuth >>> r = requests.get("http://example.org", auth=HTTPKerberosAuth()) ...