How use suds.client library in python 3.6.2?

7.4k Views Asked by At

I run bellow code in python 2.7 it work good :

        from suds.client import client
        client = Client(self.service_address)
        rid = client.service.bpPayRequest(terminalId=self.terminalId,
            userName=self.userName,
            userPassword=self.userPassword,
            orderId=order_id,
            amount=price,
            localDate=local_date,
            localTime=local_time,
            additionalData=additional_data,
            callBackUrl=call_back_address,
            payerId=0)

But when i run in python 3.6.2,it does not work.I guess Client is for python 2.How use suds.client library in python 3.6.2 and run top code in python 3.6.2?

1

There are 1 best solutions below

0
On

Try to use

$ pip install suds-py3

It works for python 3.7.