I'm creating an web api and need a good way to very quickly generate some well formatted xml. I cannot find any good way of doing this in python.
Note: Some libraries look promising but either lack documentation or only output to files.
|
|
|
Using lxml:
Output:
See the tutorial for more information. Update: Tutorial Link |
|||||||
|
|
ElementTree is a good module for reading xml and writing too e.g.
Output:
See this tutorial for more details and how to pretty print. Alternatively if your XML is simple, do not underestimate the power of string formatting :)
Output:
You can use string.Template or some template engine too, for complex formatting. |
||||
|
|
|
Use lxml.builder class, from: http://lxml.de/tutorial.html#the-e-factory
Output:
|
|||
|
|
|
As an alternative, you can use StringIO with an XML library that reads from/outputs to a file. |
|||
|
|