I have a program that opens csv files, operates with phrases and records data in another csv file.
I am now getting an error that I had never obtained before. I have searched the Internet for solutions but I can not find much.
The error is as follows:
Traceback (most recent call last):
File "C:/Users/file.py", line 222, in <module>
sents, tagged_sents = tag_read_sentences()
File "C:/Users/file.py", line 130, in wrapper
value = func(*args, **kwargs)
File "C:/Users/file.py", line 201, in tag_read_sentences
sents = read_input_sentences()
File "C:/Users/file.py", line 148, in read_input_sentences
for row_i, row in enumerate(reader):
File "C:\Python36-32\lib\csv.py", line 111, in __next__
self.fieldnames
File "C:\Python36-32\lib\csv.py", line 98, in fieldnames
self._fieldnames = next(self.reader)
_csv.Error: field larger than field limit (131072)
I appreciate the help, as always. I cross my fingers.