mirror of
https://github.com/ilri/csv-metadata-quality.git
synced 2024-11-04 21:43:00 +01:00
Alan Orth
a93b5b31c5
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.
6 lines
105 B
Python
6 lines
105 B
Python
from csv_metadata_quality import app
|
|
from sys import argv
|
|
|
|
if __name__ == '__main__':
|
|
app.main(argv)
|