Nico Grubert had a question about how to use XSV
Henry Thompson responded with an example of using XSV's Python API. The following excerpt contains a correction
# validateTestXML.py from XSV.driver import runit import sys xmlfile = "myxmlfile.xml" schemafile = "myxsdfile.xsd" res = runit( xmlfile, [schemafile] ) res[0].printme(sys.stdout) #corrected
