Re: How run web software *locally* easily?

2006-01-07 Thread Fuzzyman
For development I run my own modified version of CGIHTTPServer. It is called CGITHTTPServerWithSSI - http://www.voidspace.org.uk/python/recipebook.shtml#ssi It implements *some* SSI functions and allows you to maintain sites in *two* folders. A main folder and a second 'development' folder that j

Re: How run web software *locally* easily?

2006-01-06 Thread dimitri pater
Check out this recipe using CherryPy ;-)http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/442481CherryPy's server runs on localhost, also see my tutorial here: www.serpia.org/cherrypybye,DimitriOn 5 Jan 2006 16:13:01 -0800, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: If grandma wanted to ru

Re: How run web software *locally* easily?

2006-01-06 Thread sébastien
for example like that: python -m CGIHTTPServer -- http://mail.python.org/mailman/listinfo/python-list

Re: How run web software *locally* easily?

2006-01-06 Thread Paul Rubin
"[EMAIL PROTECTED]" <[EMAIL PROTECTED]> writes: > Is there some easy way to somehow perhaps embed a minimal web server in > a Python tar ball Yes, sure, see any of the HTTP server classes in the stdlib. Just listen on a localhost socket and pop a browser to point to that socket. -- http://mail.py