oscar gonzalez
oscar gonzalez

Reputation: 1

Using SOAP with WSDL in python with the suds-py3 library: Why doesn't it show me anything when I use the following code?

Using SOAP with WSDL in python with the suds-py3 library: Why doesn't it show me anything when I use the following code? What am I doing wrong?

config:

https://appweb.dane.gov.co/sipsaWS/SrvSipsaUpraBeanService?WSDL https://appweb.dane.gov.co/sipsaWS/SrvSipsaUpraBeanService?xsd=1

from suds.client import Client

url = "https://appweb.dane.gov.co/sipsaWS/SrvSipsaUpraBeanService?xsd=1"

results = Client(url)
print(results)

Solution:
Solution to the problem: use the zeep library.
implementation:
https://github.com/oigonzalezp2024/cliente-webservice-sipsa/blob/main/etl/etl.py

show console

Upvotes: 0

Views: 65

Answers (0)

Related Questions