Possible Duplicate:
Python and character normalization
Anyone knows how to drop the umlauts and other funny thingies above letters such as ā, ä, å to make them simple ascii characters like a, a, a in Python?
Possible Duplicate:
Python and character normalization
Anyone knows how to drop the umlauts and other funny thingies above letters such as ā, ä, å to make them simple ascii characters like a, a, a in Python?
I don't think they can be trivially converted since the letters ā, ä, å are valid characters as per Unicode. What you would need to do is do your own mapping from say ā, ä, å to a, if that's what you are looking to do.