2006年12月04日 星期一 12:48
我觉得zope、django等等都太庞大了,玩python就是因为它简洁。。 有没有简洁的模块,只要有request,response,session,cookie等功能就行了。
2006年12月04日 星期一 12:54
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
2006年12月04日 星期一 13:25
谢谢! 我下载了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
2006年12月04日 星期一 13:27
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
2006年12月04日 星期一 16:58
用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()
Zeuux © 2025
京ICP备05028076号