⬅︎ Back to Unicode strings to ASCII ...nicely
How about running replace on the string before normalizing:title.replace(u'\xdf', 'ss')and so on for any other special cases.
Comment
How about running replace on the string before normalizing:
title.replace(u'\xdf', 'ss')
and so on for any other special cases.