def _process_prop_suffix(prop_name, value):
"""
Some JSON properties have suffixes indicating the type of the value. This
will translate the json value into a Python type with the proper semantics,
so that subsequent property tests will work properly.
:param prop_name: The JSON property name
:param value: The JSON property value
:return: If key is a specially suffixed property name, an instance of an
appropriate python type. Otherwise, value itself is returned.
"""
if prop_name.endswith(u"_hex"):
# binary type, expressed as hex
value = binascii.a2b_hex(value)
elif prop_name.endswith(u"_bin"):
# binary type, expressed as base64
value = base64.standard_b64decode(value)
return value
评论列表
文章目录