"""Check the auth.shore.co.il web service.""" from utils import website_handler URLS = [ {"url": "http://auth.shore.co.il/", "codes": [301]}, {"url": "https://auth.shore.co.il/", "codes": [404]}, ] handler = website_handler(URLS) if __name__ == "__main__": handler("event", "context")