本文整理汇总了Python中asdf.AsdfFile.close方法的典型用法代码示例。如果您正苦于以下问题:Python AsdfFile.close方法的具体用法?Python AsdfFile.close怎么用?Python AsdfFile.close使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类asdf.AsdfFile
的用法示例。
在下文中一共展示了AsdfFile.close方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _check_value
# 需要导入模块: from asdf import AsdfFile [as 别名]
# 或者: from asdf.AsdfFile import close [as 别名]
def _check_value(value, schema):
"""
Perform the actual validation.
"""
if value is None:
if schema.get('fits_required'):
name = schema.get("fits_keyword") or schema.get("fits_hdu")
raise jsonschema.ValidationError("%s is a required value"
% name)
else:
validator_context = AsdfFile()
validator_resolver = validator_context.resolver
temp_schema = {
'$schema':
'http://stsci.edu/schemas/asdf-schema/0.1.0/asdf-schema'}
temp_schema.update(schema)
validator = asdf_schema.get_validator(temp_schema,
validator_context,
validator_callbacks,
validator_resolver)
value = yamlutil.custom_tree_to_tagged_tree(value, validator_context)
validator.validate(value, _schema=temp_schema)
validator_context.close()