Message from Python discussions
December 2018
— Client.service.callPagamS2S
But that's not related to the library not supporting Python 3, it does support it. And I did a quick Google search, isn't that related to Gestpay, or am I wrong?
— Yes
— With this url
— Ws_url
— Environment URL
test https://sandbox.gestpay.net/gestpay/GestPayWS/WsCryptDecrypt.asmx?wsdl
production https://ecommS2S.sella.it/gestpay/GestPayWS/WsCryptDecrypt.asmx?wsdl
— Is there a simple way to modify all strings in a dictionary with several levels of nested dictionaries? The thing is that I can’t predict how many levels of nested dicts will be in each instance, and I need to decode all strings before I pass the dict further.
— Check the type of the data?
— It's called recursion
—
def change(d):
for i in d.keys():
if type(d[i]) is dict:
change(d[i])
else:
.....
— What is action script
— Isn't that library discontinued?
Why not try zeep?