https://github.com/mvantellingen/python-zeep
A Python SOAP client
https://github.com/mvantellingen/python-zeep
python soap soap-client wsdl
Last synced: 18 days ago
JSON representation
A Python SOAP client
- Host: GitHub
- URL: https://github.com/mvantellingen/python-zeep
- Owner: mvantellingen
- License: other
- Created: 2016-02-14T10:31:07.000Z (about 9 years ago)
- Default Branch: main
- Last Pushed: 2024-10-16T05:30:12.000Z (7 months ago)
- Last Synced: 2025-04-01T06:28:24.304Z (about 1 month ago)
- Topics: python, soap, soap-client, wsdl
- Language: Python
- Homepage: http://docs.python-zeep.org
- Size: 2.53 MB
- Stars: 1,925
- Watchers: 63
- Forks: 597
- Open Issues: 446
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES
- Funding: .github/FUNDING.yml
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
- starred-awesome - python-zeep - A modern/fast python SOAP client based on lxml / requests (Python)
README
# Zeep: Python SOAP client
[](https://readthedocs.org/projects/python-zeep/)
[](https://github.com/mvantellingen/python-zeep/actions?query=workflow%3A%22Python+Tests%22)
[](https://codecov.io/gh/mvantellingen/python-zeep)
[](https://pypi.python.org/pypi/zeep/)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 messagesPlease see the [documentation](http://docs.python-zeep.org/) 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
```bash
pip install zeep
```Zeep uses the lxml library for parsing XML. See [lxml installation requirements](https://lxml.de/installation.html).
## Usage
```python
from zeep import Clientclient = Client('tests/wsdl_files/example.rst')
client.service.ping()
```To quickly inspect a WSDL file, use:
```bash
python -m zeep
```Please see the [documentation](http://docs.python-zeep.org) for more information.
# Sponsors
[](https://github.com/octoenergy)# Support
If you want to report a bug, please first read [the bug reporting guidelines](http://docs.python-zeep.org/en/master/reporting_bugs.html).
Please only report bugs, not support requests, to the GitHub issue tracker.