When trying to use datapaka an error is given because the csv file is open as 'rb' and then in this line:
headers = [s.decode("utf-8") for s in f.readline().rstrip('\n').split(',')]
split() and rstrip() are used with string literals as arguments instead of its binary representations.
When trying to use datapaka an error is given because the csv file is open as 'rb' and then in this line:
headers = [s.decode("utf-8") for s in f.readline().rstrip('\n').split(',')]
split() and rstrip() are used with string literals as arguments instead of its binary representations.