I use SOAPpy to access the SOAP Webservice. This call to the findPathwaysByText function works just fine:
server.findPathwaysByText (query= 'WP619', species = 'Mus musculus')
However, this login function call is not executed:
server.login (user='amarillion', pass='*****')
Since pass is a reserved word, python will not run this. Is there a workaround?
source share