ports/www/py-httpx_gssapi/pkg-descr
Dan Langille 74f6670516 www/py-httpx-gssapi: rename to www/py-httpx_gssapi
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
2024-12-04 14:33:42 +00:00

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.