scripts/universities_geolocator.py [19:33]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        print(location + " (saved previous)")
        continue

    print("Process %s..." % location)

    response = geocoder.google(location)
    coordinates = response.latlng

    if coordinates is None or len(coordinates) == 0:
        raise Exception("Location not found: " + location)

    if response.ok is not True:
        raise Exception("Location not resolved: ", location)

    new_geo = {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



scripts/user_groups_geolocator.py [18:32]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            print(location + " (saved previous)")
            continue

        print("Process %s..." % location)

        response = geocoder.google(location)
        coordinates = response.latlng

        if coordinates is None or len(coordinates) == 0:
            raise Exception("Location not found: " + location)

        if response.ok is not True:
            raise Exception("Location not resolved: ", location)

        new_geo = {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



