Skip to content
www.py 406 B
Newer Older
nimrod's avatar
nimrod committed
"""Check the shore.co.il and www.shore.co.il web sites."""

nimrod's avatar
nimrod committed
from utils import website_handler
nimrod's avatar
nimrod committed
URLS = [
nimrod's avatar
nimrod committed
    {"url": "http://shore.co.il/", "codes": [301]},
    {"url": "http://www.shore.co.il/", "codes": [301]},
    {"url": "https://shore.co.il/", "codes": [301]},
nimrod's avatar
nimrod committed
    {"url": "https://www.shore.co.il/blog"},
]
nimrod's avatar
nimrod committed
handler = website_handler(URLS)


if __name__ == "__main__":
    handler("event", "context")