I have a problem while acessing google maps from my application, when i send more than 10 requests in loop from java script i get the exception as OVER_QUERY_LIMIT from geoc
Have a list of API's and use them randomly for each request . For Example in python
like keys = [key1,key1,key3....]
location = Geocoder(random.choice(keys)).geocode(address)
or
location = Geocoder(random.choice(keys)).reverse_geocode(Lat,Long)
Based on your Requirement