I'm working on the integration of 2 CSV files.
Files are made by the following columns:
First .csv:
SKU | Name | Quantity | Active
121 | Jablko | 23 | 1
Another .csv consists following:
SKU | Quantity
232 | 4
121 | 2
I'd like to update 1.csv with data from 2.csv, in Linux, any idea how to do it in best way? Python?