mvantellingen / python-zeep

A Python SOAP client
http://docs.python-zeep.org
Other
1.87k stars 579 forks source link

Allow to pass in a pre parsed Document #1330

Closed michaelheyvaert closed 1 year ago

michaelheyvaert commented 1 year ago

Although the zeep client has a caching mechanism, every client instantiation still incurs the overhead of processing the cached WSDL document.

This PR allows a user to pass in a pre-parsed Document so it can be used by multiple Clients.

I wasn't sure if I should add an example to the docs, since this is a more advanced use case, but I would be glad to add this if it is useful.

mvantellingen commented 1 year ago

Thanks!