Search Results

1
vote

XML Processing in Python

If you're going to be building SOAP messages, check out soaplib. It uses ElementTree under the hood, but it provides a much cleaner …
0
votes

Is there a function in Python to print all the current properties and values of an object?

In most cases, using __dict__ or dir() will get you the info you're wanting. If you should happen to need more details, the standard library includes the inspect …