Is there a tool that can generate Django models from a DTD? Failing that, are there any decent DTD parsers available for Python?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
The xmlproc module from PyXML has an XML DTD parser. Try this:
For an example of its usage you can take a look at my DTD "compiler": It basically transforms XML DTDs to Python code for faster access. |
|||
|
|
|
I have not seen anything for Django that does that directly. However, have you looked at |
|||
|
|
I realize that this reply (to the second question) comes several months after the question was posted but, if only for the record: you could use xmlproc to validate your code. You can find a good example on how to do it here. |
|||||
|
|