def get_ip_groups_json()

in lambda.py [0:0]


def get_ip_groups_json(url):
    
    logging.info("Updating from " + url)

    response = urllib.request.urlopen(url)
    ip_json = response.read()

    return ip_json