如何使用许多其他@properties扩展namedtuple或对其进行子类化?
几个人就可以在下面写下这些文字;但是有很多
所以我正在寻找发电机或属性(property)工厂。
一种方法是从_fields
生成文本并执行它。
另一个将是在运行时具有相同效果的add_fields。
(我的@props是要获取行和字段
在分散在几个表中的数据库中
这样rec.pname
是persontable[rec.personid].pname
;
但namedtupleswith-smart-fields也会有其他用途。)
""" extend namedtuple with many @properties ? """
from collections import namedtuple
Person = namedtuple( "Person", "pname paddr" ) # ...
persontable = [
Person( "Smith", "NY" ),
Person( "Jones", "IL" )
]
class Top( namedtuple( "Top_", "topid amount personid" )):
""" @property
.person -> persontable[personid]
.pname -> person.pname ...
"""
__slots__ = ()
@property
def person(self):
return persontable[self.personid]
# def add_fields( self, Top.person, Person._fields ) with the same effect as these ?
@property
def pname(self):
return self.person.pname
@property
def paddr(self):
return self.person.paddr
# ... many more
rec = Top( 0, 42, 1 )
print rec.person, rec.pname, rec.paddr
最佳答案
您问题的答案
是:正是您的操作方式!你遇到了什么错误?要看一个简单的案例,
>>> class x(collections.namedtuple('y', 'a b c')):
... @property
... def d(self): return 23
...
>>> a=x(1, 2, 3)
>>> a.d
23
>>>
关于python - 用许多@properties扩展Python namedtuple吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2193009/