SatineXML Data binding for Python |
Satine is a Python library that makes XML managment easy and complete. Satine converts XML documents to Python lists with attributes (xlist). This technology allows to:
The Satine WS module is a simple HTTP server that supports both normal HTTP and SOAP requests. Hence Satine WS is a web service that supports a human interface, too.
The Hello World Example
|
|||
1: |
import
satine doc = """<message from="bill"> hello world </message>""" py = xml2py(doc) py.from = "linus" py[0] = "HELLO WORLD" print py |
For more information see documentation.