• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

examples/H15-Aug-2021-190130

src/H15-Aug-2021-10,7638,153

tests/H15-Aug-2021-20,56117,907

CHANGESH A D15-Aug-202125 KiB644515

CONTRIBUTORS.rstH A D15-Aug-2021792 5551

LICENSEH A D15-Aug-20214.3 KiB9373

MANIFEST.inH A D15-Aug-2021334 2117

PKG-INFOH A D15-Aug-20212.6 KiB8458

README.rstH A D15-Aug-20211.9 KiB7747

pyproject.tomlH A D15-Aug-2021599 3327

setup.cfgH A D15-Aug-202192 117

setup.pyH A D15-Aug-20212.1 KiB8675

README.rst

1========================
2Zeep: Python SOAP client
3========================
4
5A fast and modern Python SOAP client
6
7Highlights:
8 * Compatible with Python 3.6, 3.7, 3.8 and PyPy
9 * Build on top of lxml and requests
10 * Support for Soap 1.1, Soap 1.2 and HTTP bindings
11 * Support for WS-Addressing headers
12 * Support for WSSE (UserNameToken / x.509 signing)
13 * Support for asyncio using the httpx module
14 * Experimental support for XOP messages
15
16
17Please see for more information the documentation at
18http://docs.python-zeep.org/
19
20
21.. start-no-pypi
22
23Status
24------
25
26.. image:: https://readthedocs.org/projects/python-zeep/badge/?version=latest
27    :target: https://readthedocs.org/projects/python-zeep/
28
29.. image:: https://github.com/mvantellingen/python-zeep/workflows/Python%20Tests/badge.svg
30    :target: https://github.com/mvantellingen/python-zeep/actions?query=workflow%3A%22Python+Tests%22
31
32.. image:: http://codecov.io/github/mvantellingen/python-zeep/coverage.svg?branch=master
33    :target: http://codecov.io/github/mvantellingen/python-zeep?branch=master
34
35.. image:: https://img.shields.io/pypi/v/zeep.svg
36    :target: https://pypi.python.org/pypi/zeep/
37
38.. end-no-pypi
39
40Installation
41------------
42
43.. code-block:: bash
44
45    pip install zeep
46
47Note 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==3.4.0`
48
49Zeep uses the lxml library for parsing xml. See https://lxml.de/installation.html for the installation requirements.
50
51Usage
52-----
53.. code-block:: python
54
55    from zeep import Client
56
57    client = Client('tests/wsdl_files/example.rst')
58    client.service.ping()
59
60
61To quickly inspect a WSDL file use::
62
63    python -m zeep <url-to-wsdl>
64
65
66Please see the documentation at http://docs.python-zeep.org for more
67information.
68
69
70Support
71=======
72
73If you want to report a bug then please first read
74http://docs.python-zeep.org/en/master/reporting_bugs.html
75
76Please only report bugs and not support requests to the GitHub issue tracker.
77