loongson/pypi/: zeep-3.2.0 metadata and description

Homepage Simple index

A modern/fast Python SOAP client based on lxml / requests

author Michael van Tellingen
author_email michaelvantellingen@gmail.com
classifiers
  • Development Status :: 5 - Production/Stable
  • License :: OSI Approved :: MIT License
  • Programming Language :: Python :: 2
  • Programming Language :: Python :: 2.7
  • Programming Language :: Python :: 3
  • Programming Language :: Python :: 3.4
  • Programming Language :: Python :: 3.5
  • Programming Language :: Python :: 3.6
  • Programming Language :: Python :: 3.7
  • Programming Language :: Python :: Implementation :: CPython
  • Programming Language :: Python :: Implementation :: PyPy
license MIT
provides_extras xmlsec
requires_dist
  • appdirs (>=1.4.0)
  • attrs (>=17.2.0)
  • cached-property (>=1.3.0)
  • defusedxml (>=0.4.1)
  • isodate (>=0.5.4)
  • lxml (>=3.1.0)
  • requests (>=2.7.0)
  • requests-toolbelt (>=0.7.1)
  • six (>=1.9.0)
  • pytz
  • aiohttp (>=1.0) ; extra == 'async'
  • sphinx (>=1.4.0) ; extra == 'docs'
  • freezegun (==0.3.8) ; extra == 'test'
  • mock (==2.0.0) ; extra == 'test'
  • pretend (==1.0.8) ; extra == 'test'
  • pytest-cov (==2.5.1) ; extra == 'test'
  • pytest (==3.1.3) ; extra == 'test'
  • requests-mock (>=0.7.0) ; extra == 'test'
  • pytest-tornado (==0.4.5) ; extra == 'test'
  • isort (==4.2.15) ; extra == 'test'
  • flake8 (==3.3.0) ; extra == 'test'
  • flake8-blind-except (==0.1.1) ; extra == 'test'
  • flake8-debugger (==1.4.0) ; extra == 'test'
  • flake8-imports (==0.1.1) ; extra == 'test'
  • aioresponses (>=0.4.1) ; extra == 'test'
  • tornado (<5,>=4.0.2) ; extra == 'tornado'
  • xmlsec (>=0.6.1) ; extra == 'xmlsec'

Because this project isn't in the mirror_whitelist, no releases from root/pypi are included.

File Tox results History
zeep-3.2.0-py2.py3-none-any.whl
Size
98 KB
Type
Python Wheel
Python
2.7
  • Replaced 1 time(s)
  • Uploaded to loongson/pypi by loongson 2023-03-02 08:03:39
zeep-3.2.0.tar.gz
Size
152 KB
Type
Source
  • Replaced 1 time(s)
  • Uploaded to loongson/pypi by loongson 2023-03-02 08:03:41

A fast and modern Python SOAP client

Highlights:
  • Compatible with Python 2.7, 3.3, 3.4, 3.5, 3.6, 3.7 and PyPy
  • Build on top of lxml and requests
  • 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 tornado async transport via gen.coroutine (Python 2.7+)
  • Support for asyncio via aiohttp (Python 3.5+)
  • Experimental support for XOP messages

Please see for more information the documentation at http://docs.python-zeep.org/

Installation

pip install zeep

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 at http://docs.python-zeep.org for more information.

Support

If you want to report a bug then please first read http://docs.python-zeep.org/en/master/reporting_bugs.html

Please only report bugs and not support requests to the GitHub issue tracker.