zeep4.3.1
zeep4.3.1
Published
A Python SOAP client
pip install zeep
Package Downloads
Authors
Project URLs
Requires Python
>=3.8
Dependencies
- attrs
>=17.2.0
- isodate
>=0.5.4
- lxml
>=4.6.0
- platformdirs
>=1.4.0
- requests
>=2.7.0
- requests-toolbelt
>=0.7.1
- requests-file
>=1.5.1
- pytz
- httpx
>=0.15.0; extra == "async"
- sphinx
>=1.4.0; extra == "docs"
- coverage
[toml]==7.6.2; extra == "test"
- freezegun
==1.5.1; extra == "test"
- pretend
==1.0.9; extra == "test"
- pytest-cov
==5.0.0; extra == "test"
- pytest-httpx
; extra == "test"
- pytest-asyncio
; extra == "test"
- pytest
==8.3.3; extra == "test"
- requests-mock
==1.12.1; extra == "test"
- isort
==5.13.2; extra == "test"
- flake8
==7.1.1; extra == "test"
- flake8-blind-except
==0.2.1; extra == "test"
- flake8-debugger
==4.1.2; extra == "test"
- flake8-imports
==0.1.1; extra == "test"
- xmlsec
>=0.6.1; extra == "xmlsec"
Zeep: Python SOAP client
A Python SOAP client
Highlights:
- Compatible with Python 3.9, 3.10, 3.11, 3.12, 3.13 and PyPy3
- Built on top of lxml, requests, and httpx
- 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 using the httpx module
- Experimental support for XOP messages
Please see the documentation for more information.
Status
[!NOTE] I consider this library to be stable. Since no new developments happen around the SOAP specification, it won't be updated that much. Good PRs which fix bugs are always welcome, however.
Installation
pip install zeep
Zeep uses the lxml library for parsing XML. See lxml installation requirements.
Usage
from zeep import Client
client = Client('tests/wsdl_files/example.rst')
client.service.ping()
To quickly inspect a WSDL file, use:
python -m zeep <url-to-wsdl>
Please see the documentation for more information.
Sponsors
Support
If you want to report a bug, please first read the bug reporting guidelines.
Please only report bugs, not support requests, to the GitHub issue tracker.