__init__.py 818 B

123456789101112131415161718192021222324252627
  1. """
  2. (c) 2019 EDI Parser Toolkit,
  3. Health Information Privacy Lab, Vanderbilt University Medical Center
  4. Steve L. Nyemba <steve.l.nyemba@vanderbilt.edu>
  5. Khanhly Nguyen <khanhly.t.nguyen@gmail.com>
  6. This code is intended to process and parse healthcare x12 837 (claims) and x12 835 (remittances) into human readable JSON format.
  7. The claims/outpout can be forwarded to a NoSQL Data store like couchdb and mongodb
  8. Usage :
  9. Commandline :
  10. python xreader.py --parse claims|remits --config <path>
  11. Embedded :
  12. """
  13. # from healthcareio import analytics
  14. # from healthcareio import server
  15. # from healthcareio import export
  16. import healthcareio.x12 as x12
  17. from healthcareio.x12 import publish, plugins
  18. import healthcareio.params as params
  19. from healthcareio import logger
  20. # from healthcareio import server
  21. import meta