Since version 0.28.0 of httpx The deprecated proxies argument has now been removed.:
|
self.wsdl_client = wsdl_client or httpx.Client( |
|
verify=verify_ssl, |
|
proxies=proxy, |
|
timeout=timeout, |
|
) |
|
self.client = client or httpx.AsyncClient( |
|
verify=verify_ssl, |
|
proxies=proxy, |
|
timeout=operation_timeout, |
|
) |
Since version 0.28.0 of httpx
The deprecated proxies argument has now been removed.:python-zeep/src/zeep/transports.py
Lines 186 to 195 in 41a5115