Is there an easier way to find the coordinates from the html of this url = https://www.sreality.cz/detail/prodej/byt/1+kk/praha-zizkov-krasova/151897164
I inspected the site but so far it doesnt look like there is any coordinates. the site is using mapy.cz
I tried to convert the adress to coordinates but the coordinates are sometimes off.
This is what i tried:
address = 'praha zizkov krasova'
url = 'https://nominatim.openstreetmap.org/search/' + urllib.parse.quote(address) +'?format=json'
response = requests.get(url).json()
print(response[0]["lat"])
print(response[0]["lon"])