python-google-places
python-google-places copied to clipboard
geocode_location doesn't send api key during a request?
It seems to me that the geocode_location function doesn't send the api key during a request.
Please check,
Markus
It definitely doesn't, but there is a 2,500/day query limit that google imposes on a per-IP basis when no api key is provided, so its hard to notice.
The key is normally provided by self._add_required_param_keys()
for GET requests and formatted into the url for POST requests, so it seems like geocode_location
should be a method in the GooglePlaces
class, not global.
https://github.com/slimkrazy/python-google-places/pull/100