freebsd-ports/security/py-requests-kerberos/pkg-descr
Dan Langille 85e64b3137 Add py-requests-kerberos
An authentication handler for using Kerberos with Python Requests.

Approved by: mat (mentor)
2015-03-26 23:13:13 +00:00

13 lines
494 B
Text

An authentication handler for using Kerberos with Python Requests.
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())
...
The entire requests.api should be supported.
WWW: https://github.com/requests/requests-kerberos