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?
a.todict()or similar – mgilson Jan 21 at 4:30b = a.getdict()? – ValekHalfHeart Jan 21 at 4:30__dict__of members ofa). – astex Jan 21 at 4:44