#!/usr/bin/env python3

import os
import saxo

@saxo.pipe
def url(arg):
    url = saxo.env("url")
    if url is None:
        return "Sorry, no URL was found"
    return url
