Skip to content

A simple calculator for testing the web service with Phyton, in the SOAP protocol

Notifications You must be signed in to change notification settings

MrFMach/Calculadora-Python-SOAP

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

Calculadora-Python-SOAP

A simple calculator for testing the web service with Python, in the SOAP protocol

Import the library:

from zeep import Client

Access the web service:

cliente = Client(wsdl='http://www.dneonline.com/calculator.asmx?WSDL')

Calculates and shows the results of the four operations. Do you can to choose the values, changing the parenthesis values:

print(cliente.service.Add(10,5))

print(cliente.service.Subtract(10,5))

print(cliente.service.Multiply(10,5))

print(cliente.service.Divide(10,5))

About

A simple calculator for testing the web service with Phyton, in the SOAP protocol

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages