Hello
Is there an easy way to provide a proxy to use?
Thanks
Because python-zeep uses requests as Transport layer, it is possible. But right now it does not support proxy out of the box, you can inherit Transport class and reimplement create_session method in order to provide proxy payload.
Another perhaps easier way is to set client.transport.session.proxies = {}. See http://docs.python-requests.org/en/master/api/#requests.Session.proxies
Thanks guys. I used @mvantellingen way and it worked.
Most helpful comment
Another perhaps easier way is to set
client.transport.session.proxies = {}. See http://docs.python-requests.org/en/master/api/#requests.Session.proxies