From: Kevin A. <al...@se...> - 2004-04-28 18:41:14
|
On Apr 27, 2004, at 11:54 AM, Andrei wrote: > gaston wrote on Tue, 27 Apr 2004 12:23:16 -0600: > >> Does any of the more experienced users know of any cheap python >> hosting >> where python scripts can be used to test and practice? > > For testing and practice you can also run a webserver locally. On > Windows > you could look at e.g. Abyss webserver for a really simple solution, > but > you can also get heavy hitters like Apache to run locally. > If you just want to run locally, you can use the built-in Python web server classes or the webserver sample which wraps those classes, supports CGI, and a simple visual log of incoming requests. The code needs to be simplified for Python 2.3 since most of the workaround code is no longer needed and just mirrors what is now included with Python 2.3 (2.2.x was broken and couldn't deal with POST from IE browsers). http://pythoncard.sourceforge.net/samples/webserver.html ka |