Hi Johnson
I wanted to create web server some think like similar to ZServer of zope.
I wanted to use it for publishing my home page (it is in php), or any web application.
I am confused with arch. , ????????


bye
rakesh

On 3/3/06, Kent Johnson <[EMAIL PROTECTED]> wrote:
Rakesh Mishra wrote:
> hi
>
> i wanted to create my own web server, can any body suggest any tutorial,
> by the way i have gone through book Core Python Programing, in this book
> one example is given but it is to abstract, that i am unable to understand .

Can you be more specific? Creating a web server in Python can be done in
one line:

python -c "import CGIHTTPServer; CGIHTTPServer.test()"

will start a web server that serves static files and cgi's.

There are *many* options for creating a full web application in Python
(too many options, some say). Two currently popular choices are Django
and TurboGears but they may be overkill for what you need.

Anyway we really need more details of what you want to do and why to be
able to help you.

Kent


_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to