hl7apy
hl7apy copied to clipboard
Python library to parse, create and handle HL7 v2 messages.
Hi, First of all, thank you for making this library publicly available and maintaining it 👍 I'm testing out some scenarios and I came across a situation that I can't...
Usage: ``` with MLLPClient(host, int(port)) as client: result = client.send(message) return result ```
make char_encoding for MLLPRequestHandler configurable while keeping default to utf-8
Hello, The "messages.py" files within the various version folders do not contain many of the possible elements. I believe this prevents us from being able to determine repetitions for elements...
To allow for logging and error reporting
This MR should fix issue #7
Many times it's easier to quickly view the contents of an HL7 message in a dictionary format (or convert it to JSON). It would be great if there was a...
branch: develop While reading Validation doc (http://crs4.github.io/hl7apy/tutorial/index.html#validation) > Moreover, when using STRICT validation it is not possible to instantiate an unknown element. > In TOLERANT mode, the library does not...
Hi, I am using smartHL7 message sender http://smarthl7.com/tools.html along with your mllp server for a project. It seems that when I send one message at a time, your mllp server...
I have so far found three HL7 libraries in Python: https://github.com/johnpaulett/python-hl7, https://github.com/crs4/hl7apy, https://github.com/mps-gmbh/hl7-parser, https://github.com/flrt/hl7tersely and https://github.com/norlowski/HL7py. A doc outlining the major differences would be great.