User William McVey - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T21:11:22Zhttp://stackoverflow.com/feeds/user/27642http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/192109/is-there-a-function-in-python-to-print-all-the-current-properties-and-values-of-a/205037#2050370Answer by William McVey for Is there a function in Python to print all the current properties and values of an object?William McVey2008-10-15T14:53:54Z2008-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#1992131Answer by William McVey for XML Processing in PythonWilliam McVey2008-10-13T22:17:10Z2008-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>