From 54398a1f9870875f5dc486aacfa6ba30332f5917 Mon Sep 17 00:00:00 2001 From: Steve Nyemba Date: Thu, 7 Nov 2019 01:40:16 -0600 Subject: [PATCH] documentation bugs --- README.md | 15 +++++++++------ setup.py | 2 +- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 933e329..5ba8eeb 100644 --- a/README.md +++ b/README.md @@ -10,17 +10,13 @@ The claims/outpout can be forwarded to a NoSQL Data store like couchdb and mongo pip install git+https://hiplab.mc.vanderbilt.edu/git/steve/parse-edi.git -## Credits - -* Steve L. Nyemba -* Khanhly Nguyen - ## Usage **Commandline :** + python edi --config --folder --store <[mongo|disk|couch]> -- with : @@ -32,7 +28,7 @@ The claims/outpout can be forwarded to a NoSQL Data store like couchdb and mongo **Embedded in Code :** -Use parse-edi within your code base as a library +Use **parse-edi** within your code base as a library and handle storing data in a data store of choice import edi.parser import json @@ -48,3 +44,10 @@ Use parse-edi within your code base as a library filename = os.sep.join([CLAIM_FOLDER,files[0]]) #-- selecting the first file in the folder (it's an example) conf = json.loads(open( os.sep.join([CONFIG_FOLDER,'837.json']) ).read()) info = edi.parser.get_content(file,conf) #-- array of objects claims/remits + +## Credits + +* Steve L. Nyemba +* Khanhly Nguyen + + diff --git a/setup.py b/setup.py index 65e765d..f459728 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ import sys def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() -args = {"name":"parse-edi","version":"1.0.0","author":"Vanderbilt University Medical Center","license":"MIT","packages":["edi"],"keywords":["healthcare","edi","x12","data","transport","protocol"]} +args = {"name":"parse-edi","version":"1.0.0","author":"Vanderbilt University Medical Center","author_email":"steve.l.nyemba@vanderbilt.edu","license":"MIT","packages":["edi"],"keywords":["healthcare","edi","x12","data","transport","protocol"]} args["install_requires"] = ['data-transport@git+https://dev.the-phi.com/git/steve/data-transport.git','pymongo','numpy','cloudant','pika','boto','flask-session','smart_open'] args['url'] = 'https://hiplab.mc.vanderbilt.edu' if sys.version_info[0] == 2 :