mirror of
https://git.freebsd.org/ports.git
synced 2025-05-19 10:33:12 -04:00
Move py-httpx-gssapi to py-httpx_gssapi Upstream renamed the distfile. While here, update to 0.4 re: https://github.com/pythongssapi/httpx-gssapi/releases/tag/v0.4
12 lines
475 B
Text
12 lines
475 B
Text
HTTPX is a full featured Python HTTP library with both sync and async APIs
|
|
designed to be a next generation HTTP client for Python. This library is a
|
|
port of Requests GSSAPI to HTTPX which adds optional GSSAPI authentication
|
|
support and supports mutual authentication.
|
|
|
|
Basic GET usage:
|
|
|
|
>>> import httpx
|
|
>>> from httpx_gssapi import HTTPSPNEGOAuth
|
|
>>> r = httpx.get("http://example.org", auth=HTTPSPNEGOAuth())
|
|
|
|
Both the sync and async HTTPX APIs should be fully supported.
|