version.py 937 B

12345678910111213141516171819202122232425
  1. __author__ = 'The Phi Technology LLC'
  2. __version__ = '2.0-RC'
  3. __license__ = """
  4. (c) 2019 EDI Parser Toolkit,
  5. Health Information Privacy Lab, Vanderbilt University Medical Center & The Phi Technology
  6. Steve L. Nyemba <steve.l.nyemba@vumc.org>
  7. Khanhly Nguyen <khanhly.t.nguyen@gmail.com>
  8. This framework is intended to parse and structure healthcare x12 837 (claims) and x12 835 (remittances) into human readable formats
  9. - ( parse {x12} ) --> ( store as JSON ) --> ( export to database)
  10. The supported databases are mysql, postgresql, sqlite3, mongodb, couchdb ...
  11. More information on supported databases is available at https://hiplab.mc.vanderbilt.edu/git/hiplab/data-transport.git
  12. Sample 835 and 837 claims (zipped) are available for download at https://x12.org/examples/
  13. Usage :
  14. Commandline :
  15. python xreader.py --parse claims|remits --config <path>
  16. Embedded :
  17. """
  18. __name__ = "Healthcare/IO::Parser "+__version__