Python论坛  - 讨论区

标题:[python-chinese] 在python中有没有像asp或php那样的动态网页编程模块

2006年12月04日 星期一 12:48

junyi sun ccnusjy在gmail.com
星期一 十二月 4 12:48:55 HKT 2006

我觉得zope、django等等都太庞大了,玩python就是因为它简洁。。

有没有简洁的模块,只要有request,response,session,cookie等功能就行了。

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年12月04日 星期一 12:54

limodou limodou在gmail.com
星期一 十二月 4 12:54:52 HKT 2006

On 12/4/06, junyi sun <ccnusjy在gmail.com> wrote:
> 我觉得zope、django等等都太庞大了,玩python就是因为它简洁。。
>
> 有没有简洁的模块,只要有request,response,session,cookie等功能就行了。

mod_python, karrigell

-- 
I like python!
UliPad <>: http://wiki.woodpecker.org.cn/moin/UliPad
My Blog: http://www.donews.net/limodou

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年12月04日 星期一 13:25

junyi sun ccnusjy在gmail.com
星期一 十二月 4 13:25:01 HKT 2006

谢谢!
我下载了karrigell,编写了两个小程序,觉得很好用,找到感觉了。
但不知karrigell的自带的服务器的稳定性如何?

On 12/4/06, limodou <limodou在gmail.com> wrote:
> On 12/4/06, junyi sun <ccnusjy在gmail.com> wrote:
> > 我觉得zope、django等等都太庞大了,玩python就是因为它简洁。。
> >
> > 有没有简洁的模块,只要有request,response,session,cookie等功能就行了。
>
> mod_python, karrigell
>
> --
> I like python!
> UliPad <>: http://wiki.woodpecker.org.cn/moin/UliPad
> My Blog: http://www.donews.net/limodou
> _______________________________________________
> python-chinese
> Post: send python-chinese在lists.python.cn
> Subscribe: send subscribe to python-chinese-request在lists.python.cn
> Unsubscribe: send unsubscribe to  python-chinese-request在lists.python.cn
> Detail Info: http://python.cn/mailman/listinfo/python-chinese

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年12月04日 星期一 13:27

limodou limodou在gmail.com
星期一 十二月 4 13:27:14 HKT 2006

On 12/4/06, junyi sun <ccnusjy在gmail.com> wrote:
> 谢谢!
> 我下载了karrigell,编写了两个小程序,觉得很好用,找到感觉了。
> 但不知karrigell的自带的服务器的稳定性如何?
>
应该可以吧。邮件列表中有几个使用karrigell很多,可以听一听他们的意见。

-- 
I like python!
UliPad <>: http://wiki.woodpecker.org.cn/moin/UliPad
My Blog: http://www.donews.net/limodou

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2006年12月04日 星期一 16:58

Jacob Fan jacob在exoweb.net
星期一 十二月 4 16:58:12 HKT 2006

用twisted

from twisted.web import server, resource
from twisted.internet import reactor

class Simple(resource.Resource):
    isLeaf = True
    def render_GET(self, request):
        return "Hello, world!"

site = server.Site(Simple())
reactor.listenTCP(8080, site)
reactor.run()

取session
request.getSession()

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

如下红色区域有误,请重新填写。

    你的回复:

    请 登录 后回复。还没有在Zeuux哲思注册吗?现在 注册 !

    Zeuux © 2025

    京ICP备05028076号