Here is my code:
JavaScript
x
6
1
from hl7apy.parser import parse_message
2
3
hl7 = open("hl7.txt", "r").read()
4
msg = parse_message(hl7)
5
print(msg.children)
6
result:
JavaScript
1
2
1
[<Segment MSH>]
2
It shows only the first segment, seems simple but I don’t know what i’m doing wrong.
I’ve tried from a text file, passing the message directly or even with another HL7 message, but always got same results.
Here is the message:
JavaScript
1
5
1
MSH|^~&|SendingAPP|TEST|||20080617143943||ORU^R01|1|P|2.3.1||||||UNICODE
2
PID|1||7393670^^^^MR||Joan^JIang||19900804000000|Female
3
PV1|1||nk^^001
4
OBR|1||20071207011|00001^Automated Count^99MRC||20080508140600|20080508150616|||John||||20080508150000||||||||||HM||||||||TEST
5
Here is my message in notepad++ where all characters are shown:
Advertisement
Answer
by disabling find_groups
like this msg = parser.parse_message(hl7, find_groups=False)
My messages are now parsed correctly.
Thx to @sqlab and @badger0053 for help, i was able to make a progression.