I'm trying to remove all the accents in a string in python using unidecode
and it work pretty well
import unidecode
print(unidecode.unidecode('ááíãôç'))
it returns
aaioac
The problem is that i need to keep the 'ç' character
aaiaoç
Is there some way or some library i can use ? Instead of hard code my way out of this problem ?