Code that supports data cleaning workflows
Script that splits data exported from Adlib into multiple csv files.
To run the script:
python3 clean/split.py
To run tests:
python3 -m unittest -v tests.test_split
Script that merges multiple csv files into dat file that can easily be imported in Adlib.
To run the script, add files to 'merge' folder and run the following command:
python3 clean/merge.py
To run tests:
python3 -m unittest -v tests.test_merge