python-hl7
python-hl7 copied to clipboard
A simple library for parsing messages of Health Level 7 (HL7) version 2.x into Python objects.
This is the only two lines of code: ``` import hl7 new_message = hl7.Message("ADT", "A01") ``` running this code shows this error: > C:\...\hl7\containers.py:332: SyntaxWarning: invalid escape sequence '\|' >...
Docs: It seems that this line is incorrect "The library could eventually also contain the ability to create HL7 v2.x messages." https://python-hl7.readthedocs.io/en/latest/ But it seems I can create a message,...
The --quiet option for the CLI doesn't do anything. The action was "store_true" with a default of true which means even if you add the --quiet option it still prints...
The follow fails when there is HTML messages in a segment with the \\E\\ escape sequence. `hl7_message = await hl7_reader.readmessage()` The data does not fully load--which never finds the end...
Refer to the documentation, I plan to use asyncio to make an HL7 server, the relevant code is as follows: ```python import aiorun import asyncio import hl7 from hl7.mllp import...
I made changes to accomplish two things. First, Segment.assign_field() correctly re-writes values. The caller can redefine the structure of the hl7 message. Second, a new function in Message and Segment,...
I'm working on a project that modifies HL7 messages and have run into a couple bugs. Your documentation say that the library may eventually contain the ability to create HL7....
Hi, It seems that there is a bug introduced in 0.4.3 version. Indeed, with 0.4.2 version, I can write that: ```python import hl7 f=hl7.Field("|", ["MSH"]) print(f) MSH ``` With version...
Bumps [wheel](https://github.com/pypa/wheel) from 0.37.1 to 0.38.1. Changelog Sourced from wheel's changelog. Release Notes UNRELEASED Updated vendored packaging to 22.0 0.38.4 (2022-11-09) Fixed PKG-INFO conversion in bdist_wheel mangling UTF-8 header values...