productner
productner copied to clipboard
CSV file opens in "wb". This throws an error in python3
I believe the line below must be replaced to
outfile = open('.'.join(data_file.split('.')[:-1] + ['processed', 'csv']), 'wb')
To the line below for python3
outfile = open('.'.join(data_file.split('.')[:-1] + ['processed', 'csv']), 'w')
open a PR :)
Hi, Looks like I don't have permissions to raise PRs