parser/healthcareio/__init__.py

27 lines
818 B
Python
Raw Normal View History

2019-11-06 20:37:26 +00:00
"""
(c) 2019 EDI Parser Toolkit,
Health Information Privacy Lab, Vanderbilt University Medical Center
Steve L. Nyemba <steve.l.nyemba@vanderbilt.edu>
Khanhly Nguyen <khanhly.t.nguyen@gmail.com>
This code is intended to process and parse healthcare x12 837 (claims) and x12 835 (remittances) into human readable JSON format.
The claims/outpout can be forwarded to a NoSQL Data store like couchdb and mongodb
Usage :
Commandline :
python xreader.py --parse claims|remits --config <path>
Embedded :
"""
2020-09-16 15:58:32 +00:00
2023-11-21 19:12:27 +00:00
# from healthcareio import analytics
# from healthcareio import server
# from healthcareio import export
2020-10-06 16:47:20 +00:00
import healthcareio.x12 as x12
2023-12-01 03:38:06 +00:00
from healthcareio.x12 import publish, plugins
import healthcareio.params as params
2024-02-06 16:58:08 +00:00
from healthcareio import logger
2020-09-26 20:32:06 +00:00
# from healthcareio import server
2023-11-21 18:58:06 +00:00
2024-02-06 17:16:10 +00:00
import meta