From 93ad747bc26aa25b37de7bfd84d61183accd0a83 Mon Sep 17 00:00:00 2001 From: Aleph Melo Date: Thu, 16 Mar 2023 17:18:13 -0300 Subject: [PATCH] Update index.rst The current service seems to be offline for quite a while. --- docs/index.rst | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/index.rst b/docs/index.rst index fe2382e6..56627ef7 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -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