Apache 中的 Python Web 开发

发布于 2024-07-08 02:07:52 字数 244 浏览 9 评论 0原文

我一直在 apache2 中使用 mod_python ,它的工作方式似乎与一般的 python 不同 - 有一些不同的语法和你需要做的事情。 它没有很好的文档记录,并且在使用了几天之后,我真的根本没有看到 mod_python 的意义,特别是当像 php 这样的东西有如此详细的文档记录和可用时。

我可以看到 Python 如何很好地用于系统编程,但是任何人都可以提供任何信息来说明为什么我不应该将 python 转储到基于 Web 的应用程序吗?

I've been playing with mod_python in apache2 which seems to work differently than python does in general - there's a bit different syntax and things you need to do. It's not very well documented and after a few days of playing with it, I'm really not seeing the point of mod_python at all, especially when things like php are so well documented and available.

I can see how Python works well for system programming, but can anyone give any information as to why I shouldn't just dump python for a web-based application?

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

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

发布评论

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

评论(2

樱桃奶球 2024-07-15 02:07:52
  1. 不要使用 mod_python。 一个常见的错误是将 mod_python 视为“mod_php,但对于 python”,这是不正确的。 请改用 mod_wsgi
  2. 选择一个网络框架。 CherryPy塔架Django
  3. 看看 wsgi.org
  1. Don't use mod_python. A common mistake is take mod_python as "mod_php, but for python" and that is not true. Use mod_wsgi instead.
  2. Choose a web framework. CherryPy. Pylons. Django.
  3. Look at wsgi.org
衣神在巴黎 2024-07-15 02:07:52

mod_python 并不是真正为进行基本的网络编程而设计的。 我建议你使用一个框架:

我的建议是给 python 一些时间。 人们很容易将简单性和缺乏功能混淆起来。 :)

mod_python wasn't really made for doing basic webprogramming. I suggest you go with a framework:

My suggestion is to give python some time. It's easy to get simplicity and lack of power confused. :)

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