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

Refactor as package with subpackages

This makes it cleaner for introducing checks, fixes, tests, docs,
and tests in the future. Currently can be run like this:

  python -m csv_metadata_quality

CSV input and output paths are still hard coded.

See: https://dev.to/codemouse92/dead-simple-python-project-structure-and-imports-38c6
This commit is contained in:
2019-07-26 22:11:10 +03:00
parent ef5b8f7244
commit 232d28e13e
4 changed files with 27 additions and 18 deletions

View File

@ -0,0 +1,4 @@
from csv_metadata_quality import app
if __name__ == '__main__':
app.run()