Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Perhaps I'm overlooking something simple, but I would like to cast an instance of a custom class as a dictionary in python (for the sake of readability), but haven't got an inkling as to how. To explain in pseudocode, I would like to be able to do this:

class A:
   # class things...

a = A()
b = dict(a)

where I have defined what b will be within A. Is this possible?

share|improve this question
1  
Usually, this is accomplished with a custom method. a.todict() or similar – mgilson Jan 21 at 4:30
is there a problem with b = a.getdict()? – ValekHalfHeart Jan 21 at 4:30
1  
What do you expect from b? If all you want is access to a's namespace {attributes:values}, you can use vars(a) or a.__dict__. – sidi Jan 21 at 4:32
I was hoping to avoid a custom method getDict(), which is what I have written while waiting for an answer. It just seems...sloppy. – astex Jan 21 at 4:34
@sidi has a decent answer, but I need this action to recurse (i.e to get __dict__ of members of a). – astex Jan 21 at 4:44
show 1 more comment

1 Answer

up vote 4 down vote accepted

If you define __iter__, it'll Just Work(tm):

class A(object):
    def __init__(self, a, b):
        self.a = a
        self.b = b
    def __iter__(self):
        return vars(self).iteritems()

gives

>>> A(2,3)
<__main__.A object at 0x101ea70d0>
>>> dict(A(2,3))
{'a': 2, 'b': 3}

and you can return or yield whatever you like. That said, I second the suggestion in the comments that you should really just implement a .to_dict() method instead, as often __iter__ is too useful for other purposes to waste on this one.

share|improve this answer
+1, Beat me to it. That said, this might all be overkill, as it appears that OP could simply be happy with vars(a). – Lattyware Jan 21 at 4:32
1  
@Lattyware: or we can split the difference and use a custom __str__ or __repr__ as @tcaswell suggested if readability is the concern and not so much with the dict itself. – DSM Jan 21 at 4:38
@sidi Also gives a good answer in the comments (__str__ and __repr__ do not suffice here). – astex Jan 21 at 4:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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