Guest User

Accessing HCPCS service via SOAP in Python

a guest
Jan 27th, 2013
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.20 KB | None | 0 0
  1. from suds.client import Client
  2. url = "http://www.restfulwebservices.net/wcf/HCPCSService.svc?wsdl"
  3. client = Client(url)
  4. print client
  5. result = client.service.GetDetailsByCode('99213')
  6. print result
Advertisement
Add Comment
Please, Sign In to add comment