Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,12 @@ A simple example:

from zeep import Client

client = Client('http://www.webservicex.net/ConvertSpeed.asmx?WSDL')
result = client.service.ConvertSpeed(
100, 'kilometersPerhour', 'milesPerhour')
client = Client(
'http://webservices.oorsprong.org/websamples.countryinfo/CountryInfoService.wso?WSDL')

result = client.service.CapitalCity("DE")

assert result == 62.137
assert result == 'Berlin'


Quick Introduction
Expand Down