You can read substantial parts of "Python in a Nutshell" for free online -- though selective pages are being omitted at the publisher's request to induce you to buy the book -- and other only partly-overlapping parts of the second edition here. The chapters I'm pointing you to in both the first and second editions are about sockets and server-side network programming, the immediately previous ones cover network and web programming with a focus on the client sides, and following ones cover CGI and alternatives, HTML, XML, etc.
Not covered, due to the age of the books, is the best alternative to CGI, WSGI (can actually be deployed on top of CGI, but also very efficiently on Apache, nginx, Google App Engine, etc; and basically all modern Python web frameworks run well on top of WSGI -- there are also some highly modular "not quite frameworks" such as werkzeug that are totally WSGI-focused).
To deliver a working Python web app ASAP, Django is probably the best and definitely the most popular choice today; but the very aspects that make it such a high-productivity environment (the huge amount of things it does "hiddenly and magically" on your behalf) make it less useful for pure learning purposes than more modular, less abstract, less magical frameworks such as Paste, Pylons, Werkzeug, &c. It's very instructive to start on plain WSGI and add helpful components and middleware only gradually as you understand why they're better than doing it all yourself "by hand".
For more info on WSGI, see its own site which is rich with helpful links & docs.