def start(web_cfg): """ Start the web service """ static = Static(web_cfg) root_resource = Root(web_cfg, static) site = Site(root_resource) return site