I am planning to use the package \"googlemaps\" in Python and had trouble with the api_id.
The following codes:
from googlemaps import GoogleMaps gma
You can try using geoPy package in python. Sample code is as below:
from geopy.geocoders import Nominatim geolocator = Nominatim() location = geolocator.geocode("Ratainda") print((location.latitude, location.longitude))