Skip to main content

Python library working with FHIR standard in scope of biobanks MIABIS requirements

Project description

FHIR Library

This Python library is simplifying work with FHIR library focused on BBMRI-ERIC biobanks. This library works with Patient, Specimen, and Condition resources, along with extensions needed for these resources as defined by simplifier.net/bbrmi.de.

Documentation of this library is available at fhir-biobank.readthedocs.io

Installation

pip install fhir-biobank

Usage

This library allows you to easily create FHIR resources along with all the data in a single constructor. Use case of creating a simple Patient resource:

from fhir_biobank import PatientResource

internal_id = "0"
patient_identifier = "4816522"
patient_gender = "female"
patient_birthdate = date(2000, 12, 11)
patient = PatientResource(internal_id, patient_identifier, patient_gender, patient_birthdate)

Standard action is to convert FHIR resource to a JSON representation. Use case of converting Patient resource to a JSON representation:

json_representation = patient.patientJSON()

JSON representation of the Patient resource initialized above looks like this:

{
  "id": "0",
  "meta": { "profile": [ "https://fhir.bbmri.de/StructureDefinition/Patient" ] },
  "birthDate": "2000-12-11",
  "deceasedBoolean": "False",
  "gender": "female",
  "identifier": [
    {
      "type": {
        "coding": [
          {
            "code": "ACSN",
            "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
            "userSelected": "True"
          }
        ]
      },
      "use": "usual",
      "value": "4816522"
    }
  ],
  "multipleBirthBoolean": "False",
  "resourceType": "Patient"
}

In order to upload resource to a server, creating Bundle resource containing all of the resources that you want to upload is necessary. Bundle contains list of Entry resources, where each Entry resource represents specific resource(for example Patient resource). Here is a example how to create Bundle resource containing the Patient resource made earlier:

from fhir_biobank.bundle import Bundle, Entry

fullURL_patient_resource = "https://example.com/patient/0"
shortURL_patient_resource = "patient/0"
entry = Entry(patient, fullURL_patient_resource, shortURL_patient_resource)
entries = [entry]
bundle_id = "424242"
bundle = Bundle(bundle_id, entries)

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

fhir_biobank-0.1.3.tar.gz (14.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

fhir_biobank-0.1.3-py3-none-any.whl (19.9 kB view details)

Uploaded Python 3

File details

Details for the file fhir_biobank-0.1.3.tar.gz.

File metadata

  • Download URL: fhir_biobank-0.1.3.tar.gz
  • Upload date:
  • Size: 14.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.7.0

File hashes

Hashes for fhir_biobank-0.1.3.tar.gz
Algorithm Hash digest
SHA256 08a792d4dcefbc9be69406db2f5deb895736bafe891d622166535b73ce5acb22
MD5 e5b05c452b015d73db3cb79cb9e1623e
BLAKE2b-256 94c100319bd516ece34880773096970496c823693b069badd92345f67d5bd640

See more details on using hashes here.

File details

Details for the file fhir_biobank-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: fhir_biobank-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 19.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.7.0

File hashes

Hashes for fhir_biobank-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 5ce4c48df354b9143cf22d6bacd30ca80b445fc220c9ad0770f95a96bdd728ba
MD5 b7c08e33637c498a1c6d2f9ad9a7da1b
BLAKE2b-256 f8edd24418f7d5956bc30da71569d8a8c81e04cec7f3a44c0043970091006802

See more details on using hashes here.

Supported by

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