How should colander be used for xml deserialization? Docs say that it can even be used for xml deserialization and validation, but I didn't find any good examples for that in docs or on the web!
If anyone has used colander for xml deserialization can you just put a snippet here on its usage? It would be very helpful.
Look at
colander
as a tool for 'deserialization/validation from a python dictionary'. A dict in Python can be formed from any structured data format, I guess.In one of my projects I validate POST (
webob.multidict
) data and a JSON file and use the same lines of code:cstruct
is always a dict, as mentioned above - sometimes made of processedMultidict
, sometimes made ofjson.load(json_data)
.So, transform XML to dict first and then validate the dict with
colander
.