Maps and converts delimited data to FHIR resources.
Project description
CSV to FHIR
Loads CSV records from file, and maps them to FHIR resources.
Pre-requisites
- Python >= 3.9 for application development
Quickstart CLI
OS X / Linux
# clone the repo
git clone https://github.com/LinuxForHealth/CsvToFHIR.git
cd CsvToFHIR
# create virtual environment and create an "editable" install
python3 -m venv venv --clear && \
source venv/bin/activate && \
python3 -m pip install --upgrade pip setuptools wheel
python3 -m pip install -e .[dev]
# run tests
python3 -m pytest
Windows Setup
Launch the Windows Command and "Run as Administrator"
# clone the repo
git clone https://github.com/LinuxForHealth/CsvToFHIR.git
cd CsvToFHIR
# create the virtual environment (may take some time to complete)
python -m venv venv --clear
.\venv\Scripts\activate
python -m pip install --upgrade pip setuptools wheel
# integrate the local development environment with the virtual environment
python -m pip install -e ".[dev]"
The pip install
command for the local project will print a WARNING similar to
WARNING: The script csvtofhir.exe is installed in 'C:\Users\someuser\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\LocalCache\local-packages\Python39\Scripts'
which is not on PATH.
Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
On Windows the csvtofhir CLI is "compiled" as an EXE and resides within a local cache directory. This directory must be on the SYSTEM path in order to invoke csvtofhir without including the full path to the executable.
To execute unit tests, simply run:
python -m pytest
CSVToFHIR CLI
The CLI supports:
DataContract validation
csvtofhir validate -f demo/config/data-contract.json
CSV Conversion
The csvtofhir convert command has two processing modes, directory mode, -d
, and file mode, -f
.
Directory Mode
In directory
mode the convert command is given a base directory path which contains the following subdirectories:
- input: where input, or source, data records are located
- config: where the CSVToFHIR data contract configuration, data-contract.json, and supporting files are located.
The -o
parameter is used to specify the location where output files are saved.
csvtofhir convert -d demo -o demo/output
The convert
utility creates a separate output directory for each unique patient record.
File Mode
In file
mode the convert command is provided a single file path to convert.
The -f
flag is used to specify the input data file.
The -c
flag is used to specify the configuration directory.
The -o
flag is used in the same manner as directory
mode.
csvtofhir convert -f demo/input/patient.csv -c demo/config -o demo/output
Code Formatting
CSVToFHIR uses flake8 for style checking and autopep8 for formatting. Flake8 is used to find and identify issues, while AutoPep8 will fix (most of) them.
A simplified workflow to ensure uniform formatting is to . . .
Run AutoPep8 against the source and test code
python3 -m autopep8 src/ tests/ --in-place
And then use Flake8 to find remaining issues, which will need to be manually addressed.
python3 -m flake8 src/ tests/
Flake8 and AutoPep8 are configured using setup.cfg within the flake8
section.
In VS Code to format in the editor, - in-place
must be removed from the configuration.
Logging
CSVToFHIR follows best practices for logging configuration. Specifically, the only handler supported is the NullHandler. This allows consuming applications and services to configure handlers as appropriate.
The following table lists packages which emit logging information.
Packages | Description |
---|---|
csvtofhir | CSVToFHIR converter entry point |
csvtofhir.fhirrs | Converts CSV source records to FHIR Resources |
csvtofhir.pipeline | Pipeline tasks used to align source data with internal CSV models |
To utilize logging within a local development environment, please review the comments within the support module.
Additional Documentation
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
Hashes for linuxforhealth-csvtofhir-1.2b0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2c5c806ce7619726d4ace2cc28e5c7d018d7dd58f11a848a9813402b07b4eb8b |
|
MD5 | 5c7b956910e2c9c6b999e7ae84d4f0f0 |
|
BLAKE2b-256 | 5956574a17ee8e532e9486eca3ea4bce356d53d08865ce50bd20b67667269ac5 |
Hashes for linuxforhealth_csvtofhir-1.2b0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4cf4bae85c289e8129bcd2c15369ceb5c1e982a76f6415c38d244317f5dfd605 |
|
MD5 | 388e7d6987b3f48f60a28772fdf60a07 |
|
BLAKE2b-256 | 2d449ac4732ea72d257ee8bf8d59874f11c49b098f47b99b9a21065730924a4e |