parser/meta/__init__.py

23 lines
902 B
Python
Raw Normal View History

2024-02-06 04:11:26 +00:00
__author__ = 'The Phi Technology LLC'
2024-02-09 16:14:00 +00:00
__version__ = '2.0'
2024-02-06 04:11:26 +00:00
__license__ = """
(c) 2019 EDI Parser Toolkit,
Health Information Privacy Lab, Vanderbilt University Medical Center & The Phi Technology
Steve L. Nyemba <steve.l.nyemba@vumc.org>
Khanhly Nguyen <khanhly.t.nguyen@gmail.com>
This framework is intended to parse and structure healthcare x12 837 (claims) and x12 835 (remittances) into human readable formats
- ( parse {x12} ) --> ( store as JSON ) --> ( export to database)
The supported databases are mysql, postgresql, sqlite3, mongodb, couchdb ...
More information on supported databases is available at https://hiplab.mc.vanderbilt.edu/git/hiplab/data-transport.git
Sample 835 and 837 claims (zipped) are available for download at https://x12.org/examples/
2024-02-09 15:02:01 +00:00
DOCUMENTATION :
- https://healthcareio.the-phi.com for more information
2024-02-06 04:11:26 +00:00
"""
2024-02-09 16:14:00 +00:00
__name__ = "Healthcare/IO::Parser "+__version__