2

我如何在 Bottle 中管理多个应用程序,从一个应用程序提供服务run

应用程序 0

from bottle import Bottle

app0 = Bottle()

@app0.route('/app0/')
def app0_route():
    return {'`app0` says': 'Greetings!'}

应用程序 1

from bottle import Bottle

app1 = Bottle()

@app1.route('/app1/')
def app1_route():
    return {'`app1` says': 'Greetings!'}

主要的

if __name__ == '__main__':
    app0.run()    # How do I link `app1` here?
4

1 回答 1

4

app1您可以使用以下方法合并所有路线Bottle.merge

if __name__ == '__main__':
    app0.merge(app1)
    app0.run()

它不会更改原始所有者,请参见此处

于 2013-12-20T03:13:41.320 回答