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
|
|
|
|
2020-09-26 20:32:06 +00:00
|
|
|
from healthcareio import analytics
|
2021-01-12 21:56:00 +00:00
|
|
|
from healthcareio import server
|
|
|
|
from healthcareio import export
|
2020-10-06 16:47:20 +00:00
|
|
|
import healthcareio.x12 as x12
|
2020-12-22 05:28:22 +00:00
|
|
|
import healthcareio.params as params
|
|
|
|
|
2020-09-26 20:32:06 +00:00
|
|
|
# from healthcareio import server
|
2023-11-21 18:58:06 +00:00
|
|
|
|