Apache 中的 Python Web 开发
我一直在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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. :)