本文整理汇总了Python中cyclone.util.ObjectDict.properties方法的典型用法代码示例。如果您正苦于以下问题:Python ObjectDict.properties方法的具体用法?Python ObjectDict.properties怎么用?Python ObjectDict.properties使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cyclone.util.ObjectDict
的用法示例。
在下文中一共展示了ObjectDict.properties方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: OD
# 需要导入模块: from cyclone.util import ObjectDict [as 别名]
# 或者: from cyclone.util.ObjectDict import properties [as 别名]
{'name': 'option',
'label': 'What option?',
'type': 'radio',
'help': 'Place here your help text',
'options': [{'label': 'Option 1', 'value': 'option1'},
{'label': 'Option 2', 'value': 'option2'}],
'hint': 'Pick one of these many options',
'required': False,
}
]
info = OD()
info.name = "Node Name"
info.description = lorem
info.statistics = {'x': 20, 'y': 300, 'z': 123}
info.properties = {'x': True, 'y': False}
info.https_address = 'https://example.com/'
info.httpo_address = 'httpo://foobar.onion/'
info.contexts = [{'id': 0, 'name': 'context1',
'groups': groups,
'fields': fields,
'description': lorem,
'style': 'default',
'creation_date': footime,
'update_date': footime},
{'id': 1, 'name': 'context2',
'groups': groups,
'fields': fields,
'description': lorem,
'style': 'default',