flask resty:Flask的REST API的构建块 源码
烧瓶休息 Flask-RESTy提供了使用 , 和创建REST API的构建块。 from flask_resty import Api , GenericModelView from . import app , models , schemas class WidgetViewBase ( GenericModelView ): model = models . Widget schema = schemas . WidgetSchema () class WidgetListView ( WidgetViewBase ): def get ( self ):