Repository URL to install this package:
|
Version:
3.4.0 ▾
|
from zeep.wsdl import bindings
__all__ = ["AsyncSoap11Binding", "AsyncSoap12Binding"]
class AsyncSoapBinding(object):
async def send(self, client, options, operation, args, kwargs):
envelope, http_headers = self._create(
operation, args, kwargs, client=client, options=options
)
response = await client.transport.post_xml(
options["address"], envelope, http_headers
)
if client.settings.raw_response:
return response
operation_obj = self.get(operation)
return self.process_reply(client, operation_obj, response)
class AsyncSoap11Binding(AsyncSoapBinding, bindings.Soap11Binding):
pass
class AsyncSoap12Binding(AsyncSoapBinding, bindings.Soap12Binding):
pass