vote up 2 vote down star
3

I C# we do it through reflection. In Javascript it is simple as:

for(var propertyName in objectName)
    var currentPropertyValue = objectName[propertyName];

How to do it in Python?

flag

4 Answers

vote up 3 vote down check
for property, value in theObject.__dict__.iteritems():
    print property, ": ", value

Be aware that in some rare cases there's a __slots__ property, such classes often have no __dict__.

link|flag
now how to change the value? in Javascript you could do: object[property] = newValue. How to do it in Python? – Jader Dias Aug 9 at 18:32
I got it: objectName.__dict__[propertyName] = newValue – Jader Dias Aug 9 at 19:03
4  
use setattr() instead. – Nelson Aug 9 at 19:19
vote up 9 vote down

See inspect.getmembers(object[, predicate]).

Return all the members of an object in a list of (name, value) pairs sorted by name. If the optional predicate argument is supplied, only members for which the predicate returns a true value are included.

>>> [name for name,thing in inspect.getmembers([])]
['__add__', '__class__', '__contains__', '__delattr__', '__delitem__', 
'__delslice__',    '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', 
'__getitem__', '__getslice__', '__gt__', '__hash__', '__iadd__', '__imul__', '__init__', '__iter__', 
'__le__', '__len__', '__lt__', '__mul__', '__ne__', '__new__', '__reduce__','__reduce_ex__', 
'__repr__', '__reversed__', '__rmul__', '__setattr__', '__setitem__', '__setslice__', 
'__sizeof__', '__str__', '__subclasshook__', 'append', 'count', 'extend', 'index', 
'insert', 'pop', 'remove', 'reverse', 'sort']
>>>
link|flag
1  
+1, inspect is the right way to tackle this kind of tasks! – Alex Martelli Aug 9 at 17:51
Yeah, this answer is great; never used this module before. getmembers() is implemented by just walking the results of dir(object), btw. – Nelson Aug 9 at 17:53
Can you elaborate why this is better than accessing dict? The Python documentation is less than helpful, especially because normally it uses the term attributes instead of members (is there any difference between the two?). They could have fixed the name in Python 3.0 to make it consistent. – nikow Aug 9 at 20:56
Oops, meant __dict__, sorry. – nikow Aug 9 at 20:57
@nikow: inspect.getmembers() is guaranteed to keep working even if the internal details change. – gs Aug 9 at 21:30
vote up 5 vote down

The __dict__ property of the object is a dictionary of all its other defined properties. Note that Python classes can override __getattr__ and make things that look like properties but are not in __dict__. There's also the builtin functions vars() and dir() which are different in subtle ways. And __slots__ can replace __dict__ in some unusual classes.

Objects are complicated in Python. __dict__ is the right place to start for reflection-style programming. dir() is the place to start if you're hacking around in an interactive shell.

link|flag
vote up 6 vote down

dir() is the simple way. See here:

Guide To Python Introspection

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.