python-zeep icon indicating copy to clipboard operation
python-zeep copied to clipboard

A Python SOAP client

Results 241 python-zeep issues
Sort by recently updated
recently updated
newest added

This commit relates to the same issue as https://github.com/cloudgitaware/python-zeep/commit/1221efb9d03559317edf0acb1c920a1e148a4242

Since [version 0.28.0 of httpx](https://github.com/encode/httpx/releases/tag/0.28.0) `The deprecated proxies argument has now been removed.`: https://github.com/mvantellingen/python-zeep/blob/41a5115774b1807735dd1ddc6e08a36ca82ce094/src/zeep/transports.py#L186-L195

Hello, I'm trying to leverage WSDL files posted [here ](https://community.cisco.com/t5/call-control/how-to-get-the-wsdl-file-for-cisco-uc-gateway-services-api/td-p/3772462) Changing locations to local files I made zeep parse it. Request which goes out looks like this below `014925: Feb...

Is there a way in zeep to inject raw XML into a message? I'm looking for similar functionality to either the `Raw` method or the `__inject` kwarg in suds-jurko. I'm...

design-decision-needed

I need the namespace to be on the element "soap-env" instead of the element "ns0:submit" client = Client('wsdl') service = client.create_service( '{http://my-target-namespace-here}myBinding', 'http://my-endpoint.com/acceptance/') response = service.submit(string) print(response) **Need to get:**...

enhancement

from requests import Session from requests.auth import AuthBase, HTTPBasicAuth # or HTTPDigestAuth, or OAuth1, etc. from zeep import Client from zeep.transports import Transport session = Session() session.auth = HTTPBasicAuth('name', 'pw')...

pytz dependency is removed. isodate is still needed for ISO durations and missing features in Python's ISO datetime parser. closes #1442, closes #1420

Hello, My Zeep version is 3.3.1 I am trying to retrieve some data from a wsdl file at this address https://recette.alcyon.com/webservices?wsdl. I have already tried with a Php code which...

I think the handling of timezones in dates might be wrong. Previously, `isodate` was ignoring the timezone (or anything extra really). Now (since version 0.7.x of that library) `isodate` raises...

Hi, I'm trying to write a Powerschool API and I'm getting this error: ``` Traceback (most recent call last): File "/home/chase/.local/lib/python3.5/site-packages/zeep/xsd/schema.py", line 578, in _get_component return items[qname] KeyError: During handling...