a cli a tool that reads in two CSV files (termed "source" and "target"), reconciles the records, and produces a report detailing the differences between the two.
Reconciliation Report Generation
This Python script allows you to generate a reconciliation report in CSV format by comparing two CSV files (source and target). The report includes information about records missing in the target, missing in the source, and discrepancies of data in records.
Make sure you have Python3 installed on your machine. You can download it from Python's official website.
-
Clone the Repository:
git clone https://github.com/muathendirangu/reconcile.git cd reconcile
-
Run the Program:
Execute the script with the appropriate command-line arguments:
python reconciler/reconciler.py -s source.csv -t target.csv -o output_report.csv
-s
or--source
: Path to the source CSV file.-t
or--target
: Path to the target CSV file.-o
or--output
: Path to the output reconciliation report CSV file.
-
Test the program:
python3 -m unittest tests/test_reconciler.py
After running the script, you will see the reconciliation report generated in CSV format at the specified output path. Additionally, the script will print information about records missing in the source and target, as well as the number of discrepancies found.
- Ensure that the source and target CSV files have the same structure, including the field names.
- Make sure to provide valid file paths for the source, target, and output files.
- Adjust the number of processes and chunk size based on your system's capabilities for optimal performance.
- Depending on the workflow we can add concurrency to our tool
- For reading large csv files we can use asyncio module since this an i/o operation
- For reconciliation of data since it is a cpu bound we can add a function to find out the number of cpus where our program is running on and leverage the multiprocessing module