Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Python library working with FHIR standard in scope of biobanks MIABIS requirements
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
pip install fhir-biobank
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)
FAQs
Python library working with FHIR standard in scope of biobanks MIABIS requirements
We found that fhir-biobank demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.