我有类似的东西
from attr import attrs, attrib
@attrs
class Foo():
max_count = attrib()
@property
def get_max_plus_one(self):
return self.max_count + 1
现在当我这样做
f = Foo(max_count=2)
f.get_max_plus_one =>3
我想将其转换为字典
{'max_count':2, 'get_max_plus_one': 3}
使用attr.asdict(f)
时没有得到@property
。我只有
{'max_count':2}
实现上述目标的最干净的方法是什么
答案 0 :(得分:0)
在这种情况下,您可以在对象上使用dir
,并且仅获取不以__
开头的属性,即忽略魔术方法:
In [496]: class Foo():
...: def __init__(self):
...: self.max_count = 2
...: @property
...: def get_max_plus_one(self):
...: return self.max_count + 1
...:
In [497]: f = Foo()
In [498]: {prop: getattr(f, prop) for prop in dir(f) if not prop.startswith('__')}
Out[498]: {'get_max_plus_one': 3, 'max_count': 2}
要处理不以__
开头的常规方法,可以添加一个callable
测试:
In [521]: class Foo():
...: def __init__(self):
...: self.max_count = 2
...: @property
...: def get_max_plus_one(self):
...: return self.max_count + 1
...: def spam(self):
...: return 10
...:
In [522]: f = Foo()
In [523]: {prop: getattr(f, prop) for prop in dir(f) if not (prop.startswith('__') or callable(getattr(Foo, prop, None)))}
Out[523]: {'get_max_plus_one': 3, 'max_count': 2}
答案 1 :(得分:0)
通常,您必须遍历 classes 属性并检查property
的实例,然后使用该实例调用属性__get__
方法。因此,类似:
In [16]: class A:
...: @property
...: def x(self):
...: return 42
...: @property
...: def y(self):
...: return 'foo'
...:
In [17]: a = A()
In [18]: vars(a)
Out[18]: {}
In [19]: a.x
Out[19]: 42
In [20]: a.y
Out[20]: 'foo'
In [21]: {n:p.__get__(a) for n, p in vars(A).items() if isinstance(p, property)}
Out[21]: {'x': 42, 'y': 'foo'}
答案 2 :(得分:0)
恐怕attrs
目前不支持。您可能想关注/评论https://github.com/python-attrs/attrs/issues/353,这可能最终会给您您想要的东西。
答案 3 :(得分:0)
如果你定义:
import attr
def attr2dict(inst):
dic = attr.asdict(inst)
dic.update({n: p.__get__(inst) for n, p in vars(type(inst)).items() if isinstance(p, property)})
return dic
然后你就会得到你想要的:
>>> attr2dict(f)
{'max_count': 2, 'get_max_plus_one': 3}