1
0
mirror of https://github.com/ilri/csv-metadata-quality.git synced 2025-05-18 10:21:54 +02:00

Add support for command line arguments

Currently only supports specifying input and output files with -i
and -o. Eventually I'll add more options like dry run, debug, and
maybe things like forcing unsafe fixes.
This commit is contained in:
2019-07-28 20:31:57 +03:00
parent 4e6225c0a9
commit a93b5b31c5
2 changed files with 18 additions and 4 deletions
csv_metadata_quality

@ -1,4 +1,5 @@
from csv_metadata_quality import app
from sys import argv
if __name__ == '__main__':
app.main()
app.main(argv)