Currently, there is no possibility of configuring httpx.Client when initializing the client using new_client function. The purpose of this issue to add the configuration ability to the new_client function so it would look like this:
def new_client(url: str, token: str, is_async: bool = False, config: httpx.BaseClient) -> Union[AsyncClient, Client]:
The config parameter should be of type httpx.BaseClient so we can pass any options that httpx.Client and httpx.AsyncClient have.
Currently, there is no possibility of configuring
httpx.Clientwhen initializing the client usingnew_clientfunction. The purpose of this issue to add the configuration ability to thenew_clientfunction so it would look like this:The
configparameter should be of typehttpx.BaseClientso we can pass any options thathttpx.Clientandhttpx.AsyncClienthave.