选择 Python/SQLObject Web 框架

发布于 2024-12-27 08:43:26 字数 367 浏览 1 评论 0原文

我有一个常规桌面应用程序,它是用 Python/GTK 和 SQLObject 作为 ORM 编写的。我的目标是创建一个网络界面,用户可以在其中登录并同步/编辑数据库。我的应用程序分为不同的模块,因此数据库和 gtk 代码完全独立,因此我也想在网络服务器上运行相同的数据库代码。

所以,我想知道是否有一个网络框架可以处理这些条件:

  • 用户身份验证
  • 使用我自己的数据库代码/SQLObject
  • 一些小部件来构建基本的用户界面

这将是我的第一个网络项目,所以我对所有搜索结果有点困惑。 CherryPy、Turbogears、web2py、金字塔?如果有人能给我一些建议,在我的情况下什么是一个好的框架,我会很高兴。

I have a regular desktop application which is written in Python/GTK and SQLObject as ORM. My goal is to create a webinterface where a user can login and sync/edit the database. My application is split up in different modules, so the database and gtk code are completly separate, so I would like to run the same database code on the webserver too.

So, I would like to know if there's a webframework which could handle these criteria:

  • User authentication
  • Use my own database code/SQLObject
  • Some widgets to build a basic ui

This would be my first webproject, so I'm a bit confused by all searchresults. CherryPy, Turbogears, web2py, Pyramid? I would be happy if someone could give me some pointers what would be a good framework in my situation.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

她如夕阳 2025-01-03 08:43:26

您指定的任何选项都可以使用。浏览他们的文档,然后决定什么对您来说是最好的。

Flask 是另一个轻量级选项: http://flask.pocoo.org/

Django 也可以工作(只需忽略它ORM 适合您自己的工作,并将其配置为查看数据库服务器中的不同数据库,以使其与您自己的 ORM 分开)。

Any of the options you name would work. Scan through their docs, and decide what looks like the nicest to you.

Flask is another lightweight option: http://flask.pocoo.org/

Django would work too (just ignore its ORM for your own work, and configure it to look at a different database within your database server, to keep it separated from your own ORM).

野稚 2025-01-03 08:43:26

尝试一下金字塔,与 Django 不同,它不会强加任何你喜欢的东西。并具有丰富的功能,可用于构建任何级别的 Web 应用程序。

Try the pyramid, it does not impose anything you like as opposed to Django. And has a wealth of features for building Web applications at any level.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文