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