Name | zeep JSON |
Version |
4.3.1
JSON |
| download |
home_page | None |
Summary | A Python SOAP client |
upload_time | 2024-10-16 05:31:30 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.8 |
license | MIT |
keywords |
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# Zeep: Python SOAP client
[![Documentation Status](https://readthedocs.org/projects/python-zeep/badge/?version=latest)](https://readthedocs.org/projects/python-zeep/)
[![Python Tests](https://github.com/mvantellingen/python-zeep/workflows/Python%20Tests/badge.svg)](https://github.com/mvantellingen/python-zeep/actions?query=workflow%3A%22Python+Tests%22)
[![Coverage](https://codecov.io/gh/mvantellingen/python-zeep/graph/badge.svg?token=zwew4hc8ih)](https://codecov.io/gh/mvantellingen/python-zeep)
[![PyPI version](https://img.shields.io/pypi/v/zeep.svg)](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 messages
Please 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 Client
client = Client('tests/wsdl_files/example.rst')
client.service.ping()
```
To quickly inspect a WSDL file, use:
```bash
python -m zeep <url-to-wsdl>
```
Please see the [documentation](http://docs.python-zeep.org) for more information.
# Sponsors
[![Kraken Tech](https://camo.githubusercontent.com/ecc2b8426b961f8895e4f42741c006839e4488fbe9ba8e92cfa02d48c7fdb3f1/68747470733a2f2f7374617469632e6f63746f70757363646e2e636f6d2f6b746c2f6b72616b656e2d6c6f676f2d772d67726f75702d7365636f6e646172792d323032322e706e67)](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.
Raw data
{
"_id": null,
"home_page": null,
"name": "zeep",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": null,
"author": null,
"author_email": "Michael van Tellingen <michaelvantellingen@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/09/35/4a91181499a1e098cb01e04a26a053714adf2fb1c25b40fdc5f46cfe2e4f/zeep-4.3.1.tar.gz",
"platform": null,
"description": "# Zeep: Python SOAP client\n[![Documentation Status](https://readthedocs.org/projects/python-zeep/badge/?version=latest)](https://readthedocs.org/projects/python-zeep/)\n[![Python Tests](https://github.com/mvantellingen/python-zeep/workflows/Python%20Tests/badge.svg)](https://github.com/mvantellingen/python-zeep/actions?query=workflow%3A%22Python+Tests%22)\n[![Coverage](https://codecov.io/gh/mvantellingen/python-zeep/graph/badge.svg?token=zwew4hc8ih)](https://codecov.io/gh/mvantellingen/python-zeep)\n[![PyPI version](https://img.shields.io/pypi/v/zeep.svg)](https://pypi.python.org/pypi/zeep/)\n\nA Python SOAP client\n\n## Highlights:\n- Compatible with Python 3.9, 3.10, 3.11, 3.12, 3.13 and PyPy3\n- Built on top of lxml, requests, and httpx\n- Support for Soap 1.1, Soap 1.2, and HTTP bindings\n- Support for WS-Addressing headers\n- Support for WSSE (UserNameToken / x.509 signing)\n- Support for asyncio using the httpx module\n- Experimental support for XOP messages\n\nPlease see the [documentation](http://docs.python-zeep.org/) for more information.\n\n## Status\n\n> [!NOTE]\n> 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.\n\n\n## Installation\n\n```bash\npip install zeep\n```\n\nZeep uses the lxml library for parsing XML. See [lxml installation requirements](https://lxml.de/installation.html).\n\n## Usage\n\n```python\nfrom zeep import Client\n\nclient = Client('tests/wsdl_files/example.rst')\nclient.service.ping()\n```\n\nTo quickly inspect a WSDL file, use:\n\n```bash\npython -m zeep <url-to-wsdl>\n```\n\nPlease see the [documentation](http://docs.python-zeep.org) for more information.\n\n\n# Sponsors\n[![Kraken Tech](https://camo.githubusercontent.com/ecc2b8426b961f8895e4f42741c006839e4488fbe9ba8e92cfa02d48c7fdb3f1/68747470733a2f2f7374617469632e6f63746f70757363646e2e636f6d2f6b746c2f6b72616b656e2d6c6f676f2d772d67726f75702d7365636f6e646172792d323032322e706e67)](https://github.com/octoenergy)\n\n# Support\n\nIf you want to report a bug, please first read [the bug reporting guidelines](http://docs.python-zeep.org/en/master/reporting_bugs.html).\n\nPlease only report bugs, not support requests, to the GitHub issue tracker.\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "A Python SOAP client",
"version": "4.3.1",
"project_urls": {
"Changelog": "https://github.com/mvantellingen/python-zeep/blob/main/CHANGES",
"Documentation": "https://docs.python-zeep.org",
"Repository": "https://github.com/mvantellingen/python-zeep"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "46928a76eeccb5c176ea3de3965598b6fcd10dc9d72a560e59919b52845327ed",
"md5": "f874c9b5e79ffedd4cf257ec335db4e8",
"sha256": "a637aa7eedb6330bb27e8c94c5233ddf23553904323adf9398f8cf5025acb216"
},
"downloads": -1,
"filename": "zeep-4.3.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "f874c9b5e79ffedd4cf257ec335db4e8",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 101690,
"upload_time": "2024-10-16T05:31:28",
"upload_time_iso_8601": "2024-10-16T05:31:28.702633Z",
"url": "https://files.pythonhosted.org/packages/46/92/8a76eeccb5c176ea3de3965598b6fcd10dc9d72a560e59919b52845327ed/zeep-4.3.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "09354a91181499a1e098cb01e04a26a053714adf2fb1c25b40fdc5f46cfe2e4f",
"md5": "8ccad8e0d53d52914f1f19a0349635b7",
"sha256": "f45385e9e1b09d5550e0f51ab9fa7c6842713cab7194139372fd82a99c56a06e"
},
"downloads": -1,
"filename": "zeep-4.3.1.tar.gz",
"has_sig": false,
"md5_digest": "8ccad8e0d53d52914f1f19a0349635b7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 166468,
"upload_time": "2024-10-16T05:31:30",
"upload_time_iso_8601": "2024-10-16T05:31:30.775531Z",
"url": "https://files.pythonhosted.org/packages/09/35/4a91181499a1e098cb01e04a26a053714adf2fb1c25b40fdc5f46cfe2e4f/zeep-4.3.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-16 05:31:30",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "mvantellingen",
"github_project": "python-zeep",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"tox": true,
"lcname": "zeep"
}