Kage9951 / Destiny2ItemManager

Python script to quickly sort through armor in Destiny 2 using Destiny Item Managers csv Export/Import and tags
23 stars 5 forks source link

Use CSV column headers instead of column numbers #4

Open stephenwilletts opened 5 years ago

stephenwilletts commented 5 years ago

Change the way that the script reads the CSV file by using the column names instead of the column numbers. This might help to avoid problems in the future if additional columns are added to the CSV export from DIM. This won't protect against column names changing though.

The Power column is read in as an integer to correctly calculate items for infusion.

Also updated the code to write the column headers to the exported CSV file.

This should fix Issue #2 and Issue #3 .

Hope this helps,

Steve