I'm trying to read a csv file that contains NUL with csv reader I search a lot for a way to read the file without an error and couldn't find one.
Edit: Adding the relevant section of the file: https://drive.google.com/open?id=1rtF3ck6QymtH4_n4iUjavPnxZiryq_Q4
My code:
with codecs.open(log_path, 'r') as csv_file:
log_reader = csv.DictReader(csv_file)
for line in log_reader:
if line['Addition Information'] == str
# do something
Will appreciate any help Thanks, Avishay