I have two CSV's, the first (CSV1) contains data about files in a folder, such as name, path, size and also has a unqiue ID (DocID).
In the second CSV (CSV2) I have additional information about these files, such as Sensitivity, Retention Period, File Owner, etch. This CSV also has a DocID field.
I want to iterate through each item in CSV1 and append to the end of each row, the additional fields from CSV2 where the DocID fields match.
I imagine this is a simple problem, with a simple solution, and I apologies for such a n00b question and appreciate any guidance on this. I have Python and Pandas on my machine.