gpt4 book ai didi

python - 带有多个应用程序的 Bottle

转载 作者:行者123 更新时间:2023-11-28 22:52:13 26 4
gpt4 key购买 nike

我如何管理 Bottle 中的多个应用程序,一次运行

应用 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?

最佳答案

您可以使用 Bottle.merge 合并 app1 中的所有路由:

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

它不会更改原始所有者,请参阅 here .

关于python - 带有多个应用程序的 Bottle ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20695029/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com