Is your feature request related to a problem? Please describe.
The library current uses requests to handle HTTP request to the remote API.
The library is significant slower than usual, which may impact the overall performance of the Client SDK
Describe the solution you'd like
Migrate to httpx, which offers a better performance delivery and support to asynchronous communication.
Requires migrate mock library from responses to pytests_httpx
Benchmarked
It was observed an improvement of up to 40% when using httpx.
Is your feature request related to a problem? Please describe.
The library current uses requests to handle HTTP request to the remote API.
The library is significant slower than usual, which may impact the overall performance of the Client SDK
Describe the solution you'd like
Migrate to httpx, which offers a better performance delivery and support to asynchronous communication.
Requires migrate mock library from
responsestopytests_httpxBenchmarked
It was observed an improvement of up to 40% when using httpx.