烧瓶基地路线

时间:2017-04-07 15:33:46

标签: python web-services rest flask server

我想用Flask为我的应用创建rest api。是否可以运行带有基线fe的烧瓶。 localhost:5000 / webservice 那个

@app.route('/users')

将处理localhost:5000 / webservice / users?

1 个答案:

答案 0 :(得分:3)

使用Flask蓝图。注册蓝图时,您可以添加网址前缀。

app.register_blueprint(restapi, url_prefix='/webservice')

以下是烧瓶蓝图文档的链接: Flask Blueprints