I am trying to populate cities in a state using OpenstreetMaps API to my django application. The database was populated with some cities already. I am facing duplicate data issue since the name in cities sometime has special characters in it.
For example in country Turkey, The state Bursa has city Gursu.
My database has a city object with name Gürsu.
And the city name from Openstreet Map API is Gürsü.
I am trying to find a solution to match existing city with special character name and update it if it exists. So that I can avoid duplicates.