I am not getting a result when I run this. Somehow, I think I should be getting something other than 'nothing' when I query a valid HCPCS code (the 99213 code in the 4th line below). Not sure what I am doing wrong.
My code:
from suds.client import Client
url = "http://www.restfulwebservices.net/wcf/HCPCSService.svc?wsdl"
client = Client(url)
print client
result = client.service.GetDetailsByCode('99213')
print result
Question: How can I get this to work? According to this site, 99213 is a valid HCPCS code, but I cannot get the description or any other details from the web service using this code. Help!