Stores FHIR JSON resources in compressed form in memory
Project description
Compressed FHIR
A Python library for storing FHIR JSON resources in a compressed form in memory, optimizing memory usage while maintaining fast access to FHIR data.
Overview
Compressed FHIR is a specialized library that provides efficient memory storage for FHIR (Fast Healthcare Interoperability Resources) JSON resources. It uses zlib or msgpack for compression while ensuring quick access to the stored healthcare data.
Features
- Efficient memory storage of FHIR resources
- Fast access to compressed FHIR data
- Compatible with standard FHIR JSON formats
- Minimal memory footprint
- Python 3.10+ support
Installation
You can install the package using pip:
pip install compressedfhir
Or using pipenv:
pipenv install compressedfhir
Requirements
- Python 3.10 or higher
- msgpack >= 1.0.0
- orjson >= 3.10.16
Usage
from typing import Any
from collections import OrderedDict
from compressedfhir.fhir.fhir_resource import FhirResource
from compressedfhir.utilities.compressed_dict.v1.compressed_dict_storage_mode import CompressedDictStorageMode
resource1 = FhirResource(
initial_dict={"resourceType": "Observation", "id": "456"},
storage_mode=CompressedDictStorageMode.default(),
)
my_dict: OrderedDict[str,Any] = resource1.dict()
my_plain_dict: dict[str, Any] = resource1.to_plain_dict()
my_json: str = resource1.json()
with resource1.transaction():
assert "email" not in resource1
assert resource1.get("name") == "Custom Mode User"
assert resource1.get("active") is True
Development Setup
-
Clone the repository:
git clone https://github.com/icanbwell/compressed-fhir.git cd compressed-fhir
-
Install dependencies using pipenv:
pipenv install --dev
-
Set up pre-commit hooks:
pre-commit install
Docker Support
The project includes Docker support for development and deployment:
# Build the Docker image
docker build -t compressed-fhir .
# Run using docker-compose
docker-compose up
Contributing
Please read CONTRIBUTING.md for details on our code of conduct and the process for submitting pull requests.
License
This project is licensed under the Apache License 2.0 - see the LICENSE file for details.
Authors
- Imran Qureshi (imran.qureshi@icanbwell.com)
Support
For support, please open an issue in the GitHub repository or contact the maintainers.
Project Status
Current status: Beta
The project is under active development. Please check the GitHub repository for the latest updates and changes.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file compressedfhir-1.0.9.tar.gz.
File metadata
- Download URL: compressedfhir-1.0.9.tar.gz
- Upload date:
- Size: 45.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d276b11e3e382c13ba1c2dc3ba74d144631b8fc9b39889576f2650b1f71aa774
|
|
| MD5 |
192027e5d3ff74ff83006227801737e9
|
|
| BLAKE2b-256 |
5f47d20a62b1f1fcbfef9ae256802170a6395e833dc3610670c6e53b46b3fa21
|
File details
Details for the file compressedfhir-1.0.9-py3-none-any.whl.
File metadata
- Download URL: compressedfhir-1.0.9-py3-none-any.whl
- Upload date:
- Size: 62.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
32c3d266a47276ac1cd3c1d660da032b792749cbe2fb3ee20c38c4f09ada2a25
|
|
| MD5 |
0052abb7bf0c60f1e9e15bf7e1579f41
|
|
| BLAKE2b-256 |
0ab4573437244d0eef7cea44463cc6390462bc0505588dab8218534958272740
|