Compare commits

...

2 Commits

Author SHA1 Message Date
Steve Nyemba 2c45c73096 document function (about) 2024-02-09 09:04:27 -06:00
Steve Nyemba e4d6e9d48d bug fixes 2024-02-09 09:02:01 -06:00
2 changed files with 5 additions and 6 deletions

View File

@ -107,7 +107,9 @@ def config(email:str,provider:str='sqlite') :
print (_msg) print (_msg)
@app.command(name='about') @app.command(name='about')
def copyright(): def copyright():
r"""
This function will return information about the {meta.__name__}
"""
for note in [meta.__name__,meta.__author__,meta.__license__]: for note in [meta.__name__,meta.__author__,meta.__license__]:
print (note) print (note)

View File

@ -16,10 +16,7 @@ More information on supported databases is available at https://hiplab.mc.vander
Sample 835 and 837 claims (zipped) are available for download at https://x12.org/examples/ Sample 835 and 837 claims (zipped) are available for download at https://x12.org/examples/
Usage : DOCUMENTATION :
Commandline : - https://healthcareio.the-phi.com for more information
python xreader.py --parse claims|remits --config <path>
Embedded :
""" """
__name__ = "Healthcare/IO::Parser "+__version__ __name__ = "Healthcare/IO::Parser "+__version__