开发者

XML file as model for django project

开发者 https://www.devze.com 2022-12-24 18:27 出处:网络
I have a XML file that is managed by other programs, I am writing a web service such that users are able to query this file. In essence i am using a xml based database instead of using sql as the mode

I have a XML file that is managed by other programs, I am writing a web service such that users are able to query this file. In essence i am using a xml based database instead of using sql as the model database in Django.

how do i do this? all the tutorials that i find use a sql database in the backend. is ther开发者_如何学编程e a way to use the xml file as a database.


There's a package to do just this available here. I haven't tried it, but looking through the source, it seems to be doing pretty much what you're asking.


Also the django-xml app gives you a Model interface to your XMLs.


Use XPath with lxml to find specific nodes within the document.

0

精彩评论

暂无评论...
验证码 换一张
取 消