from unidecode import *
reader = open("a.txt",'w')
def unite():
for line in reader:
line = unidecode(line)
print (line)
unite()
Now, I get an error saying for looping is not allowed in write mode. Is there any other way, I can modify each individual line like so, that it can be converted using unidecode?
You could hold it all in memory.
You could also use a temp file.