I need to use pyparsing for unicode characters. So I tried simple example from their github repository with French character cédille
and gives error.
My code
from pyparsing import Word, alphas
greet = Word(alphas) + "," + Word(alphas) + "!"
hello = "Hello, cédille!"
greet.parseString(hello)
and it gives error
pyparsing.ParseException: Expected "!" (at char 8), (line:1, col:9)
Is there a way to solve this problem?