from pyx12 import X12Message, Segment
from pyx12.errors import X12Error
The code I have is failing with the following error
Traceback (most recent call last):
File "/path/to/some/script.py", line 7, in <module>
from pyx12 import X12Message, Segment
ImportError: cannot import name 'X12Message' from 'pyx12' (/home/mehul/.local/lib/python3.11/site-packages/pyx12/__init__.py)
Looking through the source code, I can not fine a class cold X12Message. Am I missing something?
The code I have is failing with the following error
Looking through the source code, I can not fine a class cold
X12Message. Am I missing something?