랭킹으로 돌아가기
A Python SOAP client
pythonsoapsoap-clientwsdl
주요 지표
스타 성장
스타
2k
포크
609
주간 성장
—
이슈
383
1k2k
2016년 2월2017년 10월2019년 7월2021년 4월2023년 1월2024년 10월2026년 7월
아티팩트PyPI
pip install python-zeepREADME
Zeep: Python SOAP client
A Python SOAP client
Highlights:
- Compatible with Python 3.10, 3.11, 3.12, 3.13, 3.14 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.
관련 저장소