import bottle class FeTapWeb(): def __init__(self, api_enabled=False): pass @bottle.route("/") def root(): return "

Hello world!

" def start(self, host, port): bottle.run(host=host, port=port)