Sam Johnson
Sam Johnson

Reputation: 963

python xml validation with xsd file

Every year or so someone seems to ask the same question. Is there a good Python library to validate xml files comparing them to an xsd schema? The closest I've found is suggestions involving lxml, which unfortunately is not pure python (based on a few C libraries)

Upvotes: 2

Views: 4686

Answers (2)

mzjn
mzjn

Reputation: 50947

I would be surprised to find any pure Python XSD validation libraries. I am aware of the following alternatives for CPython, but they all depend on non-Python code:

Upvotes: 5

AJ.
AJ.

Reputation: 28174

I've used XSV for this. It's about four years since any active dev, but it works.

Upvotes: 1

Related Questions