本文整理汇总了Python中storm.locals.Store.__new__方法的典型用法代码示例。如果您正苦于以下问题:Python Store.__new__方法的具体用法?Python Store.__new__怎么用?Python Store.__new__使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类storm.locals.Store
的用法示例。
在下文中一共展示了Store.__new__方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: stuff
# 需要导入模块: from storm.locals import Store [as 别名]
# 或者: from storm.locals.Store import __new__ [as 别名]
"""
Globally-accessible stuff (like the store) initialised at runtime, not import-time
"""
from storm.locals import Store
from mako.lookup import TemplateLookup
# Thanks to _habnabit for this clever trick!
store = Store.__new__(Store)
templateLookup = TemplateLookup.__new__(TemplateLookup)
config = {}
sql = {}
internal = {
'uploadCache': {}
}
exposedStormClasses = {}
messages = {}
def expose(modelClass, crudClass):
exposedStormClasses[unicode(modelClass.__name__)] = (modelClass, crudClass)
示例2: stuff
# 需要导入模块: from storm.locals import Store [as 别名]
# 或者: from storm.locals.Store import __new__ [as 别名]
"""
Globally-accessible stuff (like the store) initialised at runtime, not import-time
"""
from storm.locals import Store
from mako.lookup import TemplateLookup
# Thanks to _habnabit for this clever trick!
avatar_store = Store.__new__(Store)
# Default for app code only.
# Warp never uses this name, so it can be safely changed or removed.
store = avatar_store
templateLookup = TemplateLookup.__new__(TemplateLookup)
config = {}
sql = {}
internal = {
'uploadCache': {}
}
exposedStormClasses = {}
messages = {}
def expose(modelClass, crudClass):
exposedStormClasses[unicode(modelClass.__name__)] = (modelClass, crudClass)