]> git.sesse.net Git - xml-template/blob - python/namespace.py
Update the PHP SWIG version to PHP 7, with various crash fixes, too.
[xml-template] / python / namespace.py
1 #! /usr/bin/python
2 import xmltemplate
3
4 doc = xmltemplate.process_file("../xml/namespace.xml", {
5         'title': 'Namespace tests',
6         '#hello': 'Hello world!',
7         '#test': 'Replaced.',
8         'tagname': 'foo',
9         '#moretest': 'bar'
10 })
11 print(doc.toxml())