Skip to content
Snippets Groups Projects
Select Git revision
  • f0b18892269bde16c4a9e993c0dc54d7e33e0989
  • master default
2 results

transmission.py

Blame
  • transmission.py 314 B
    """Check the Transmission web service."""
    
    from utils import website_handler
    
    URLS = [
        {"url": "http://transmission.shore.co.il/", "codes": [301]},
        {"url": "https://transmission.shore.co.il/", "codes": [401]},
    ]
    
    handler = website_handler(URLS)
    
    
    if __name__ == "__main__":
        handler("event", "context")