是否有通过 XML-RPC 与数据交互的 Python ORM 框架?
我正在开发一个 Web 应用程序,它通过 XML-RPC 与数据交互,而不是直接连接到数据库。我可以通过 XML-RPC 方法执行 SQL 查询。
我想以 ORM 框架方式与数据进行交互,该框架具有惰性/急切的获取等功能,尽管我似乎无法弄清楚如何使用 Python 甚至 Django 的库来实现这一点。
I am working on a webapp that interacts with data via XML-RPC rather than with a direct connection to a database. I can execute SQL queries via an XML-RPC methods.
I would like to interact with the data in an ORM framework fashion that has lazy/eager fetching, etc., although I can't seem to figure out how that would be possible with Python or even Django's libraries.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 XML 模型。它是 REST 而不是 XML-RPC,但其中大部分可能是可重用的。
Check out XML Models. It's REST rather than XML-RPC, but much of it is probably reusable.
您必须编写自己的数据库后端。查看现有后端了解如何执行此操作。
You would have to write your own database backend. Take a look at existing backends for how to do this.