Problem with BRENDA SOAP
0
0
Entering edit mode
3.9 years ago
devmoy • 0

I'm trying to get all human Kcats and KMs from BRENDA using SOAP (technically zeep with Python3 I guess). I used this code, which follows the example code given here:

from zeep import Client
import hashlib

wsdl = "https://www.brenda-enzymes.org/soap/brenda_zeep.wsdl"
password = hashlib.sha256("password".encode("utf-8")).hexdigest()
client = Client(wsdl)
parameters = (
    "email@email.com",
    password,
    "organism*Homo sapiens"
)
resultString = client.service.getKcatKmValue(*parameters)

and it gives me the error "Missing element organism (getKcatKmValue.organism)"

It's not clear to me what I'm doing wrong. Any insight would be appreciated.

brenda zeep • 811 views
ADD COMMENT

Login before adding your answer.

Traffic: 3180 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6