本文整理汇总了Python中schematics.types.BaseType方法的典型用法代码示例。如果您正苦于以下问题:Python types.BaseType方法的具体用法?Python types.BaseType怎么用?Python types.BaseType使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类schematics.types
的用法示例。
在下文中一共展示了types.BaseType方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __new__
# 需要导入模块: from schematics import types [as 别名]
# 或者: from schematics.types import BaseType [as 别名]
def __new__(meta, name, bases, attrs):
for name, attr in six.iteritems(attrs):
if isinstance(attr, types.BaseType):
camelized = inflection.camelize(name, uppercase_first_letter=False)
attr.serialized_name = attr.serialized_name or camelized
attr.deserialize_from = attr.deserialize_from or camelized
return super(BetfairModelMeta, meta).__new__(meta, name, bases, attrs)
示例2: fields
# 需要导入模块: from schematics import types [as 别名]
# 或者: from schematics.types import BaseType [as 别名]
def fields(cls) -> Dict[str, BaseType]: # OrderedDict
return cls.data_model.fields
示例3: create_cattrs_converter
# 需要导入模块: from schematics import types [as 别名]
# 或者: from schematics.types import BaseType [as 别名]
def create_cattrs_converter():
converter = Converter()
converter.register_structure_hook(bool, _structure_bool)
converter.register_structure_hook(string_type, _structure_string)
converter.register_structure_hook(Model, _structure_schematics)
converter.register_structure_hook(BaseType, _structure_basetype)
converter.register_structure_hook(datetime, _structure_datetime)
converter.register_unstructure_hook(Model, _unstructure_schematics)
converter.register_unstructure_hook(datetime, _unstructure_datetime)
converter.register_unstructure_hook(BaseType, _unstructure_basetype)
return converter