I've been trying to work with the google maps api and i keep getting this error:
"HTTPError: HTTP Error 403:Forbidden."
take for example this simple case (its based on a more elaborate case where i extract the adress from an XML):
from googlemaps import GoogleMaps
import xml.etree.ElementTree as et
gmaps = GoogleMaps()
pars = et.XMLParser(encoding='utf-8')
tree = et.parse('data.xml',parser=pars)
root = tree.getroot()
adress = "ringelblum 7 beer sheva"
lat , lng = gmaps.address_to_latlng(adress)
print lat, lng
i've seen different videos and tutorials and it should be very simple. why doesnt it work? Thanks a lot guys.