Zeep: Python SOAP client¶
A fast and modern Python SOAP client
- Highlights:
- Compatible with Python 3.7, 3.8, 3.9, 3.10, 3.11 and PyPy
- Build on top of lxml and requests
- Support for Soap 1.1, Soap 1.2 and HTTP bindings
- Support for WS-Addressing headers
- Support for WSSE (UserNameToken / x.509 signing)
- Support for asyncio via httpx
- Experimental support for XOP messages
A simple example:
from zeep import Client
client = Client('http://www.webservicex.net/ConvertSpeed.asmx?WSDL')
result = client.service.ConvertSpeed(
100, 'kilometersPerhour', 'milesPerhour')
assert result == 62.137
Quick Introduction¶
Zeep inspects the WSDL document and generates the corresponding code to use the services and types in the document. This provides an easy to use programmatic interface to a SOAP server.
The emphasis is on SOAP 1.1 and SOAP 1.2, however Zeep also offers support for HTTP Get and Post bindings.
Parsing the XML documents is done by using the lxml library. This is the most performant and compliant Python XML library currently available. This results in major speed benefits when processing large SOAP responses.
The SOAP specifications are unfortunately really vague and leave a lot of things open for interpretation. Due to this there are a lot of WSDL documents available which are invalid or SOAP servers which contain bugs. Zeep tries to be as compatible as possible but there might be cases where you run into problems. Don’t hesitate to submit an issue in this case (but please first read Reporting bugs).
Installation¶
Zeep is a pure-python module. This means that there is no C code which needs to be compiled. However the lxml dependency does contain C code since it uses libxml2 and libxslt. For linux/bsd this means you need to install libxml2-dev and libxslt-dev packages. For Windows this is unfortunately a bit more complicated. The easiest way is to install lxml via wheel files since that contains already compiled code for your platform.
To install wheel files you need a recent pip client. See https://pip.pypa.io/en/stable/installing/ how to install pip on your platform.
If you have installed pip then run:
pip install zeep
Note that the latest version to support Python 2.7, 3.3, 3.4 and 3.5 is Zeep 3.4, install via pip install zeep==2.4.0
This assumes that there are wheel files available for the latest lxml release. If that is not the case (https://pypi.python.org/pypi/lxml/) then first install lxml 4.2.5 since that release should have the wheel files for all platforms:
pip install lxml==4.2.5 zeep
When you want to use wsse.Signature() you will need to install the python
xmlsec module. This can be done by installing the xmlsec
extras:
pip install zeep[xmlsec]
For the asyncio support in Python 3.6+ the httpx module is required, this
can be installed with the async
extras:
pip install zeep[async]
Getting started¶
The first thing you generally want to do is inspect the wsdl file you need to implement. This can be done with:
python -mzeep <wsdl>
See python -mzeep --help
for more information about this command.
Note
Zeep follows semver for versioning, however bugs can always occur.
So as always pin the version of zeep you tested with
(e.g. zeep==4.1.0
’).
A simple use-case¶
To give you an idea how zeep works a basic example.
import zeep
wsdl = 'http://www.soapclient.com/xml/soapresponder.wsdl'
client = zeep.Client(wsdl=wsdl)
print(client.service.Method1('Zeep', 'is cool'))
The WSDL used above only defines one simple function (Method1
) which is
made available by zeep via client.service.Method1
. It takes two arguments
and returns a string. To get an overview of the services available on the
endpoint you can run the following command in your terminal.
python -mzeep http://www.soapclient.com/xml/soapresponder.wsdl
Note
Note that unlike suds, zeep doesn’t enable caching of the wsdl documents by default. This means that everytime you initialize the client requests are done to retrieve the wsdl contents.
User guide¶
API Documentation¶
Changelog¶
- Changelog
- 4.2.0 (2022-111-03)
- 4.1.0 (2021-08-15)
- 4.0.0 (2020-10-12)
- 3.4.0 (2019-06-05)
- 3.3.1 (2019-03-10)
- 3.3.0 (2019-03-08)
- 3.2.0 (2018-12-17)
- 3.1.0 (2018-07-28)
- 3.0.0 (2018-06-16)
- 2.5.0 (2018-01-06)
- 2.4.0 (2017-08-26)
- 2.3.0 (2017-08-06)
- 2.2.0 (2017-06-19)
- 2.1.1 (2017-06-11)
- 2.1.0 (2017-06-11)
- 2.0.0 (2017-05-22)
- 1.6.0 (2017-04-27)
- 1.5.0 (2017-04-22)
- 1.4.1 (2017-04-01)
- 1.4.0 (2017-04-01)
- 1.3.0 (2017-03-14)
- 1.2.0 (2017-03-12)
- 1.1.0 (2017-02-18)
- 1.0.0 (2017-01-31)
- 0.27.0 (2017-01-28)
- 0.26.0 (2017-01-26)
- 0.25.0 (2017-01-23)
- 0.24.0 (2016-12-16)
- 0.23.0 (2016-11-24)
- 0.22.1 (2016-11-22)
- 0.22.0 (2016-11-13)
- 0.21.0 (2016-11-02)
- 0.20.0 (2016-10-24)
- 0.19.0 (2016-10-18)
- 0.18.1 (2016-09-23)
- 0.18.0 (2016-09-23)
- 0.17.0 (2016-09-12)
- 0.16.0 (2016-09-06)
- 0.15.0 (2016-09-04)
- 0.14.0 (2016-08-03)
- 0.13.0 (2016-07-17)
- 0.12.0 (2016-07-09)
- 0.11.0 (2016-07-03)
- 0.10.0 (2016-06-22)
- 0.9.1 (2016-06-17)
- 0.9.0 (2016-06-14)
- 0.8.1 (2016-06-08)
- 0.8.0 (2016-06-07)
- 0.7.1 (2016-06-01)
- 0.7.0 (2016-05-31)
- 0.6.0 (2016-05-21)
- 0.5.0 (2015-05-08)
- 0.4.0 (2016-04-17)
- 0.3.0 (2016-04-10)
- 0.2.5 (2016-04-05)
- 0.2.4 (2016-04-03)
- 0.2.3 (2016-04-03)
- 0.2.2 (2016-04-03)
- 0.2.1 (2016-04-03)
- 0.2.0 (2016-04-03)
- 0.1.1 (2016-03-20)
- 0.1.0 (2016-03-20)