Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions httpx/__init__.py
Original file line number Diff line number Diff line change
@@ -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 *
Expand Down