Reading list Switch to dark mode

    Python SOAP Clients With Zeep

    Updated 14 September 2019

    Introduction:

    Working with SOAP based web services can sometimes be a time taking task when you have to write the complete XML for making API requests and then parse the response xml to fetch the desired results. That’s a headache right? Well, that’s when zeep comes into play. Zeep is a pure-python module. The best thing about Zeep is that you don’t have to write the XML at all. You just create a dictionary with all the relevant request data, and it will create the XML for you.

    Implementing zeep client:

    The first thing that you’ll need to do is, install the zeep python library as:

    pip install zeep

    Now, in your python code, you’ll need to import Client from zeep and then instantiate the same by passing the wsdl url in it as shown below:

    from zeep import Client
    wsdl = "https://wsvc.cdiscount.com/MarketplaceAPIService.svc?wsdl"
    client = Client(wsdl)

    You can also pass user autherntication details(username and passowrd) in case the wsdl is password protected. For this, you’ll need to create the Session object as shown below:

    from zeep import Client
    from requests import Session
    from requests.auth import HTTPBasicAuth
    from zeep.transports import Transport
    wsdl = <wsdl_url>
    session = Session()
    session.auth = HTTPBasicAuth(<username>, <password>)
    #An additional argument 'transport' is passed with the authentication details
    client = Client(wsdl, transport=Transport(session=session))
    

    Passing Parameters using Zeep:

    As I mentioned above, you just need to pass the request parameters as a standard python dictionary and zeep will internally convert it to the final xml.

    Start your headless eCommerce
    now.
    Find out More

    For instance:

    request_data = {
        'account_id': '1234abc',
        'sender': {
            'street': '1226  Denver Avenue',
            'city': 'Anaheim',
            'state': 'CA',
            'zip': '92801',
            'country': 'US',
        },
        'receiver': {
            'street': '4040  Leo Street',
            'city': 'Pittsburgh',
            'state': 'PA',
            'zip': '15205',
            'country': 'US',
        },
        'attributes': {
            'item': {
                'id': '0',
                'unitPrice': '12.34',
                'quantity': '1',
            },
            'service': {
                'delivery': 'Ground',
            }
        }
    }
    

    The above dictionary will be converted to the xml something similar to:

    <account_id>1234abc</account_id>
    <sender>
        <street>1226  Denver Avenue</street>
        <city>Anaheim</city>
        <state>CA</state>
        <zip>92801</zip>
        <country>US</country>
    </sender>
    <receiver>
        <street>4040  Leo Street</street>
        <city>Pittsburgh</city>
        <state>PA</state>
        <zip>15205</zip>
        <country>US</country>
    </receiver>
    <attributes>
        <item>
            <id>0</id>
            <unitPrice>12.34</unitPrice>
            <quantity>1</quantity>
        </item>
        <service>
            <delivery>Ground</delivery>
        </service>
    </attributes>

    Zeep detects the xml schema from the wsdl file that is passed while creating the client object. Wsdl(Web Service Description Language) contains the required description about the endpoint. It contains the list of operations available and also states the parameters that each operation requires. Zeep uses this information to map the passed request  dictionary to the corresponding xml.

    Envoking web service methods:

    You can use the operations defined in the wsdl using the simple syntax shown below:

    response = client.service.sendData(**request_data)
    #Here 'request_data' is the request parameter dictionary.
    #Assuming that the operation named 'sendData' is defined in the passed wsdl.
    

    The response object:

    Zeep response is similar to a python dictionary object(key-value pair) so it’s very easy to obtain the desired values from the response object using the following syntax:

    response['key']

    That’s it. If you like this post, it would be great if you could add your feedback and suggestions in the comment section. Also feel free to share your queries down below. Happy coding. 🙂

    Thanks!

    . . .

    Leave a Comment

    Your email address will not be published. Required fields are marked*


    16 comments

  • Ivan Doo
  • Jeroen Vermunt
    • Mohit Budakoti (Moderator)
  • far
    • Mohit Budakoti (Moderator)
  • Antonio Samper
    • Anisha Bahukhandi (Moderator)
  • Hamid
    • Anisha Bahukhandi (Moderator)
  • Mukesh
    • Ravi Raushan (Moderator)
  • Thomas
  • Eliakim
    • Aditya Sharma (Moderator)
  • Didier
    • Aditya Sharma (Moderator)
  • Back to Top

    Message Sent!

    If you have more details or questions, you can reply to the received confirmation email.

    Back to Home