Tring to compile the following code:
from suds.client import Client
import time
url = 'https://webapi.allegro.pl/service.php?wsdl'
client = Client(url)
The output of the shell is:
Traceback (most recent call last):
File "C:/Users/Kornelcia/Desktop/Python/api.py", line 3, in <module>
from suds.client import Client
File "C:\Users\Kornelcia\AppData\Local\Programs\Python\Python36-32\lib\site-packages\suds\client.py", line 242
except Exception, e:
^
SyntaxError: invalid syntax
How could I make it work?