Skip to main content

Pydantic FHIR modeling

Project description


CI releases versions license Pydantic v2 FHIR Releases

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')
    

(back to top)

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".

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/amazing_feature)
  3. Commit your Changes (git commit -m 'Add some amazing feature')
  4. Push to the Branch (git push origin feature/amazing_feature)
  5. Open a Pull Request (PR)

(back to top)

Support

This project has been supported by the following institutions:

  • University Hospital of Zurich

License

Distributed under the MIT License. See LICENSE for more information.

(back to top)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fhircraft-0.1.0.tar.gz (12.5 MB view hashes)

Uploaded Source

Built Distribution

fhircraft-0.1.0-py3-none-any.whl (12.5 MB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page