requests-kerberos · PyPI
https://pypi.org/project/requests-kerberos04.12.2021 · A Kerberos authentication handler for python-requests. Preemptive Authentication. HTTPKerberosAuth can be forced to preemptively initiate the Kerberos GSS exchange and present a Kerberos ticket on the initial request (and all subsequent). By default, authentication only occurs after a 401 Unauthorized response containing a Kerberos or Negotiate challenge is …
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()) ...