用许多@properties 扩展Python namedtuple?
Posted
技术标签:
【中文标题】用许多@properties 扩展Python namedtuple?【英文标题】:extend Python namedtuple with many @properties? 【发布时间】:2011-01-12 16:12:34 【问题描述】:如何使用许多额外的@properties 扩展或子类命名元组?
对于少数人,可以只写下面的文字;但是有很多,
所以我正在寻找发电机或物业工厂。
一种方法是从_fields
生成文本并执行它;
另一个是在运行时具有相同效果的 add_fields。
(我的@props 是获取行和字段
在分散在多个表中的数据库中,
所以rec.pname
是persontable[rec.personid].pname
;
但 namedtuples-with-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
【问题讨论】:
你没有回答你自己的问题吗? 我不明白这个问题。也许您希望属性显示在元组中?如果需要,请覆盖 getitem。 我也很困惑。你似乎正在做你应该做的事情以获得你所要求的效果。你有什么问题? 抱歉,不清楚:为六张桌子寻找生成器或属性工厂,其中一些有 20 个字段 既然你已经更新了问题,这是一个有趣的问题,我会考虑一下。 【参考方案1】:你的问题的答案
如何扩展命名元组或 用额外的
@properties
子类化 ?
是:正是你正在做的方式!你遇到了什么错误?要查看一个更简单的案例,
>>> class x(collections.namedtuple('y', 'a b c')):
... @property
... def d(self): return 23
...
>>> a=x(1, 2, 3)
>>> a.d
23
>>>
【讨论】:
【参考方案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)
【讨论】:
【参考方案3】:这是一种方法,一种简单的语言: 像上面那样把它变成 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
【讨论】:
以上是关于用许多@properties 扩展Python namedtuple?的主要内容,如果未能解决你的问题,请参考以下文章