当前位置: 首页>>代码示例>>Python>>正文


Python types.BaseType方法代码示例

本文整理汇总了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) 
开发者ID:jmcarp,项目名称:betfair.py,代码行数:9,代码来源:models.py

示例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 
开发者ID:fy0,项目名称:slim,代码行数:4,代码来源:abstract_sql_view.py

示例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 
开发者ID:toumorokoshi,项目名称:transmute-core,代码行数:13,代码来源:converter.py


注:本文中的schematics.types.BaseType方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。