Satine

XML Data binding for Python

Home    Documentation    FAQ    Download    Satine WS                      VERSION 0.99

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:
2:
3:
4:
5:
6:
7:
8:

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.

SourceForge.net Logo