Skip to content

Releases: Sekinal/tlshttp

v0.2.0

09 Jan 01:00

Choose a tag to compare

What's New

Basic Authentication Support

Added httpx-style auth=(username, password) tuple for Basic auth:

response = client.get(
    "https://api.example.com/protected",
    auth=("user", "pass")
)

Works on all request methods for both Client and AsyncClient.

GitHub Actions CI/CD

  • Automatic PyPI publishing on release
  • Test suite runs on Python 3.10-3.13