简体   繁体   中英

Python suds parsing response

I am using python 3.4 with suds i have the following code.

client = Client(url, faults=False)
result = client.service.SubmitTimes(apikey=apiKey, times=data)
print ("result",result)

That result =

result (200, (SqlInsertBase){
SqlInsertOk = True
})

I am trying to get what the value of SqlInsertOk equals.

i tried doing result.SqlInsertOk but that errors. Any help would be appreciated.

Thanks

如果我删除Faults = false,那么它将起作用。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM