Tweak textproc/fixrtf version 0.1.20060303_3
[dports.git] / security / py-requests-kerberos / pkg-descr
1 An authentication handler for using Kerberos with Python Requests.
2
3 Requests is an HTTP library, written in Python, for human beings. This
4 library adds optional Kerberos/GSSAPI authentication support and supports
5 mutual authentication. Basic GET usage:
6
7 >>> import requests
8 >>> from requests_kerberos import HTTPKerberosAuth
9 >>> r = requests.get("http://example.org", auth=HTTPKerberosAuth())
10 ...
11 The entire requests.api should be supported.
12
13 WWW: https://github.com/requests/requests-kerberos