本文整理汇总了Python中grano.model.Schema.all方法的典型用法代码示例。如果您正苦于以下问题:Python Schema.all方法的具体用法?Python Schema.all怎么用?Python Schema.all使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类grano.model.Schema
的用法示例。
在下文中一共展示了Schema.all方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: index
# 需要导入模块: from grano.model import Schema [as 别名]
# 或者: from grano.model.Schema import all [as 别名]
def index(slug):
project = object_or_404(Project.by_slug(slug))
authz.require(authz.project_read(project))
validate_cache(last_modified=project.updated_at)
query = Schema.all()
query = query.filter_by(project=project)
pager = Pager(query, slug=slug)
return jsonify(pager, index=not arg_bool("full"))
示例2: index
# 需要导入模块: from grano.model import Schema [as 别名]
# 或者: from grano.model.Schema import all [as 别名]
def index(slug):
project = object_or_404(Project.by_slug(slug))
validate_cache(last_modified=project.updated_at)
query = Schema.all()
query = query.filter_by(project=project)
pager = Pager(query)
conv = lambda es: [schemata.to_rest_index(e) for e in es]
return jsonify(pager.to_dict(conv))
示例3: export_schema
# 需要导入模块: from grano.model import Schema [as 别名]
# 或者: from grano.model.Schema import all [as 别名]
def export_schema(project, path):
if not os.path.exists(path):
os.makedirs(path)
for schema in Schema.all().filter_by(project=project):
fn = os.path.join(path, schema.name + '.yaml')
with open(fn, 'w') as fh:
dumped = yaml.safe_dump(schema.to_dict(schema),
canonical=False,
default_flow_style=False,
indent=4)
fh.write(dumped)