Pydantic FHIR modeling
Project description
Fhircraft is a Python package that dynamically generates Pydantic FHIR (Fast Healthcare Interoperability Resources) resource models from FHIR specifications, enabling comprehensive data structuring, validation, and typing within Python. It also offers a fully functional FHIRPath engine and code generation features to facilitate integration with other systems.
:construction: This package is under active development. Major and/or breaking changes are to be expected in future updates.:construction:
Explore the docs »
Report Bug
·
Request Feature
Why use Fhircraft?
-
Dynamic FHIR models – Generate Pydantic FHIR resource models dynamically from FHIR specification; get all FHIR's data structuring, validation and typing in a pythonic way.
-
Simple FHIR validation – Perform complete parsing and validation of FHIR resources without leaving Python; avoid dealing with FHIR's often complex rules and constraints.
-
Pydantic core – Profit from Pydantic's validation and (de)-serialization capabilities which have made it the most widely used data validation library for Python.
-
Code generator – Leverage the code generation features of Fhircraft to write static Pydantic/Python code that can be integrated into other systems.
-
Pythonic FHIRPath – Fhircraft provides a fully functional, pythonic and compliant FHIRPath engine to easily work with FHIR resources without leaving Python.
Usage
Prerequisites
A valid installation of Python >3.8 is required.
Installation
To install fhircraft
, you can download and install the package via pip
(requires pip
> 24.1):
pip install fhircraft
or install it from the source
pip install git+https://github.com/luisfabib/fhircraft.git
Getting Started
This is a quick reference on how to quickly accomplish the most common tasks with Fhircraft:
-
Constructing FHIR Pydantic models
To generate a Pydantic model representation for a FHIR resource, use the
construct_resource_model
function. This function automatically creates a model based on the structure definition of the specified resource or profile. For optimal control and security, it is recommended to manage FHIR structure definitions as local files. These files should be loaded into Python and parsed into dictionary objects.from fhircraft.fhir.resources.factory import construct_resource_model from fhicraft.utils import load_file patient_model = construct_resource_model( structure_definition=load_file('FHIR_StructureDefinition_Patient.json') )
-
Generating Pydantic FHIR models' source code
Fhircraft allows you to generate reusable source code for Pydantic FHIR models. By using the
generate_resource_model_code
function, you can obtain the source code (as a string) that defines the FHIR Pydantic model. This can be particularly useful for integrating the model into other projects or sharing it across different applications.from fhircraft.fhir.resources.generator import generate_resource_model_code source_code = generate_resource_model_code(patient_model)
You can save the generated source code and reuse it as needed. Keep in mind that the code requires Fhircraft and its dependencies to be installed in order to function properly.
-
Validating FHIR payloads
The generated Pydantic models can be used to validate FHIR payloads, ensuring that they conform to the structure and constraints of the specified resource or profile.
from fhicraft.utils import load_file data = load_file('my_fhir_patient.json') my_patient = patient_model.model_validate(data)
If the input data does not conform to the expected FHIR resource or profile, the Pydantic model will raise a
ValidationError
. If no error is raised, the FHIR payload is valid and successfully loaded into the model. -
Model manipulation using FHIRPath
You can specify the FHIRPath expression as a string in the standard notation to interact with the resource efficiently. This feature allows for complex queries and updates, enhancing your ability to work with FHIR data programmatically.
from fhicraft.fhir.path import fhirpath patient_surname = my_patient.get_fhirpath('Patient.name.surname')
Contributing
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement".
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/amazing_feature
) - Commit your Changes (
git commit -m 'Add some amazing feature'
) - Push to the Branch (
git push origin feature/amazing_feature
) - Open a Pull Request (PR)
Support
This project has been supported by the following institutions:
License
Distributed under the MIT License. See for more information.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file fhircraft-0.1.0.tar.gz
.
File metadata
- Download URL: fhircraft-0.1.0.tar.gz
- Upload date:
- Size: 12.5 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 238eb1f5661d18b9b8f55ab744e81794d8f7a99951da9c7fe0b0dc1e3aa94815 |
|
MD5 | 2464316dc054be1bfbddf43e0e32d513 |
|
BLAKE2b-256 | 14d001be9a4ffb5aba61e8b7a23a5dc4ec67dbee3cd2a5ba3214ef9c6632e1fd |
File details
Details for the file fhircraft-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: fhircraft-0.1.0-py3-none-any.whl
- Upload date:
- Size: 12.5 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 23a33136fcd09119cfa2383cd39a87033bebdaa759ee87152606c12e12d8d00c |
|
MD5 | e539b6fd1281db48a1efb60ad630d1fc |
|
BLAKE2b-256 | 255f7432326c6546ddaf7e199016962ff0a64f13c9b323d86d59831e437306bf |