User William McVey - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T21:11:22Z http://stackoverflow.com/feeds/user/27642 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/192109/is-there-a-function-in-python-to-print-all-the-current-properties-and-values-of-a/205037#205037 0 Answer by William McVey for Is there a function in Python to print all the current properties and values of an object? William McVey 2008-10-15T14:53:54Z 2008-10-15T14:53:54Z <p>In most cases, using <code>__dict__</code> or <code>dir()</code> will get you the info you're wanting. If you should happen to need more details, the standard library includes the <code>inspect</code> module, which allows you to get some impressive amount of detail. Some of the real nuggests of info include:</p> <ul> <li>names of function and method parameters</li> <li>class hierarchies</li> <li>source code of the implementation of a functions/class objects</li> <li>local variables out of a frame object</li> </ul> <p>If you're just looking for "what attribute values does my object have?", then <code>dir()</code> and <code>__dict__</code> are probably sufficient. If you're really looking to dig into the current state of arbitrary objects (keeping in mind that in python almost everything is an object), then <code>inspect</code> is worthy of consideration.</p> http://stackoverflow.com/questions/337/xml-processing-in-python/199213#199213 1 Answer by William McVey for XML Processing in Python William McVey 2008-10-13T22:17:10Z 2008-10-13T22:17:10Z <p>If you're going to be building SOAP messages, check out <a href="http://trac.optio.webfactional.com/" rel="nofollow">soaplib</a>. It uses ElementTree under the hood, but it provides a much cleaner interface for serializing and deserializing messages.</p>