Replies: 1 comment
-
All you should need to do is parse the json into a Parameters object. Something like Parameters.parse_obj(params) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi there,
Kind of new to FHIR here.
I'm able to query the LOINC FHIR server with plain python requests:
The above works and if I print out response.text I get a nice JSON payload. I'd like to be able to parse the response without having to build my own parser. It seems fhir.resources contains fhir.resources.parameters but I can't find any documentation on how to access it, how do I pass the output I get from my request above, and then how do I navigate the actual parsed response.
Any pointers?
Beta Was this translation helpful? Give feedback.
All reactions