如何使用许多其他@properties对named元组进行扩展或子类化?
对于少数人,可以写下面的文字;但是有很多,
所以我正在寻找发电机或物业工厂。
一种方法是从_fields
生成文本并执行它;
另一个是在运行时具有相同效果的add_fields
(我的@props是获取行和字段
在分散在几个表中的数据库中,
以便rec.pname
为persontable[rec.personid].pname
;
但是,带有智能字段的namedtuples也有其他用途。)
""" 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
答案 0 :(得分:17)
您问题的答案
如何扩展名称元组或 使用附加
@properties
进行子类化 ?
是:完全按照你的方式行事!你遇到了什么错误?要查看更简单的案例,
>>> class x(collections.namedtuple('y', 'a b c')):
... @property
... def d(self): return 23
...
>>> a=x(1, 2, 3)
>>> a.d
23
>>>
答案 1 :(得分:2)
这个怎么样?
class Top( namedtuple( "Top_", "topid amount personid" )):
""" @property
.person -> persontable[personid]
.pname -> person.pname ...
"""
__slots__ = ()
@property
def person(self):
return persontable[self.personid]
def __getattr__(self,attr):
if attr in Person._fields:
return getattr(self.person, attr)
raise AttributeError("no such attribute '%s'" % attr)
答案 2 :(得分:-1)
这是一种方法,一种小语言:
把它变成上面的Python文本,并执行它。
(扩展文本到文本很容易,并且易于测试 -
你可以查看中间文本。)
我确定有类似的,如果没有这么少的链接吗?
# example of a little language for describing multi-table databases 3feb
# why ?
# less clutter, toprec.pname -> persontable[toprec.personid].pname
# describe in one place: easier to understand, easier to change
Top:
topid amount personid
person: persontable[self.personid] + Person
# toprec.person = persontable[self.personid]
# pname = person.pname
# locid = person.locid
# todo: chaining, toprec.city -> toprec.person.loc.city
Person:
personid pname locid
loc: loctable[self.locid] + Loc
Loc:
locid zipcode province city