Forráskód Böngészése

add version folder

Steve Nyemba 1 éve
szülő
commit
fc40871463
1 módosított fájl, 25 hozzáadás és 0 törlés
  1. 25 0
      meta/__init__.py

+ 25 - 0
meta/__init__.py

@@ -0,0 +1,25 @@
+__author__ = 'The Phi Technology LLC'
+__version__ = '2.0-RC'
+__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/
+
+Usage :
+    Commandline :
+    python xreader.py --parse claims|remits --config <path>
+    
+    Embedded    :
+"""
+__name__ = "Healthcare/IO::Parser "+__version__