From bbf3aea38dc77fbce4550701812287d276ff25f1 Mon Sep 17 00:00:00 2001 From: Everton Date: Wed, 28 Jan 2026 19:57:48 -0300 Subject: [PATCH] Add module-level docstring to public HTTPX API --- httpx/__init__.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/httpx/__init__.py b/httpx/__init__.py index 63225040ba..d7367638a4 100644 --- a/httpx/__init__.py +++ b/httpx/__init__.py @@ -1,3 +1,10 @@ +""" +HTTPX is a fully featured HTTP client for Python. + +This module exposes the public HTTPX API, including the Client and AsyncClient +classes, request functions, transports, exceptions, and related utilities. +""" + from .__version__ import __description__, __title__, __version__ from ._api import * from ._auth import *