module documentation

Undocumented

Class BaseClient No class docstring; 6/9 properties, 0/13 instance variable, 10/22 methods documented
Class BoundAsyncStream An async byte stream that is bound to a given response instance, and that ensures the `response.elapsed` is set once the response is closed.
Class BoundSyncStream A byte stream that is bound to a given response instance, and that ensures the `response.elapsed` is set once the response is closed.
Class ClientState Undocumented
Class UseClientDefault For some parameters such as `auth=...` and `timeout=...` we need to be able to indicate the default "unset" state, in a way that is distinctly different to using `None`.
Constant ACCEPT_ENCODING Undocumented
Constant USER_AGENT Undocumented
Type Variable T Undocumented
Type Variable U Undocumented
Type Alias EventHook Undocumented
Variable logger Undocumented
ACCEPT_ENCODING = (source)

Undocumented

Value
""", """.join([key for key in SUPPORTED_DECODERS.keys() if key != 'identity'])
USER_AGENT = (source)

Undocumented

Value
f"""python-httpx/{__version__}"""

Undocumented

Value
typing.TypeVar('T',
               bound='Client')

Undocumented

Value
typing.TypeVar('U',
               bound='AsyncClient')
EventHook = (source)

Undocumented

Value
typing.Callable[..., typing.Any]

Undocumented