Now FHIR CLI is STU 3 compliant. The easy to use Command Line Interface to HL7 FHIR® – Fast Healthcare Interoperability Resources (hl7.org/fhir) – now supports also the latest version of the standard.
In order to use it, download the libraries from GITHUB: https://github.com/pghedini/fhir-cli and follow the instructions to use the STU 3 compliant client.
Let’s see an example session:
# Import the version STU 3 Candidate compliant In [1]: from client_v3 import * In [2]: cli = init_client() Using FHIR Server: http://fhir3.healthintersections.com.au/open/ Verbosity LOW No logging file. No console logging. # let's see the supported resources In [3]: RESOURCES In [3]: RESOURCES Out[3]: [u'Account', u'AllergyIntolerance', u'Appointment', u'AppointmentResponse', u'AuditEvent', u'Basic', u'Binary', u'BodySite', u'Bundle', ... u'Patient', ...] # and how much are they In [4]: len(RESOURCES) Out[4]: 114 # or make a query resp = read(cli, "Patient/example") # ...
HL7® and FHIR® are registered terms of the subject having right (HL7 organization).
Pierfrancesco Ghedini
Quest’opera è distribuita con Licenza Creative Commons Attribuzione 3.0 Italia.