本文整理匯總了Python中atom.Atom.load方法的典型用法代碼示例。如果您正苦於以下問題:Python Atom.load方法的具體用法?Python Atom.load怎麽用?Python Atom.load使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類atom.Atom
的用法示例。
在下文中一共展示了Atom.load方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: __getattr__
# 需要導入模塊: from atom import Atom [as 別名]
# 或者: from atom.Atom import load [as 別名]
def __getattr__(self, name):
attr = None
if self.__cachedir__ and Atom.is_cached(self.__cachedir__, name):
attr = Atom.load(self.__cachedir__, name, is_client=self.__is_client__)
setattr(self, name, attr)
return attr
if self.__source__ is None and self.__factory__ is not None:
source = self.__factory__()
self.__source__ = source
#Not really the right place for this.
#if self.__cachedir__ is not None:
# print '%s = %s' % (self.__cachedir__, len(self))
if self.__source__ is not None:
attr = getattr(self.__source__, name)
if attr is not None and self.__index__ is not None:
#Although this is simple and effective it is not very efficienct
# a = Ai(Bi(C[xy])))
#Using this method:
# ax = Cx[Bi][Ai], xy = ay[Bi][Ai]
#A better approach is to calculate the index then apply it
# bai = Bi[Ai], ax = Cx[bai], ay = Cx[bai]
attr = attr[self.__index__]
if attr is not None:
setattr(self, name, attr)
return attr