Python@TW: 會眾| IRC| Planet| 郵件列表| 聯絡我們

"Learn Python The Hard Way" by Zed A. Shaw 的 execise 50、51 及 52 教你如何加入寫網站應用程式(Web Application)的世界。

初學者僅供參考:

Thinker手刻四行 hello world:

   1     import BaseHTTPServer
   2     class handler(BaseHTTPServer.BaseHTTPRequestHandler): pass
   3     handler.do_GET = lambda x: x.wfile.write('Hello world')
   4     BaseHTTPServer.HTTPServer(('', 8000), handler).serve_forever()

註:行數通常不是選擇 Web Framework 的條件;但少行勝多行也是很棒的一點。