Re: Web programming in Python.

2008-09-29 Thread afrogazer
Not to be a condescending, but there are a lot of manuals out there on how to do this and asking on a forum would really not be the best way to get started. Do some research and some reading and you should be up and running in a short time. You can ask questions on the forum if you have difficultie

Re: Web programming in Python.

2008-09-29 Thread Steve Holden
Kurda Yon wrote: > 1. On my server (in my directory) I found "cgi-bin" subdirectory. > > 2. In the "cgi-bin" I have created a file "test.py". > > 3. In that file I put: > #!/usr/bin/python2.4 python OK, if /usr/bin/python2.4 really *is* a directory then you will need to make that first line #!/

Re: Web programming in Python.

2008-09-29 Thread Paul Boddie
On 29 Sep, 01:51, Kurda Yon <[EMAIL PROTECTED]> wrote: > 1. On my server (in my directory) I found "cgi-bin" subdirectory. > > 2. In the "cgi-bin" I have created a file "test.py". > > 3. In that file I put: > #!/usr/bin/python2.4 python > print "Hello, World!" > (I have checked, I have "/usr/bin/py

Re: Web programming in Python.

2008-09-28 Thread Lawrence D'Oliveiro
In message <[EMAIL PROTECTED]>, Sean DiZazzo wrote: > Have you loaded the modpython module in your httpd.conf? Not relevant for CGIs. -- http://mail.python.org/mailman/listinfo/python-list

Re: Web programming in Python.

2008-09-28 Thread Sean DiZazzo
On Sep 28, 4:51 pm, Kurda Yon <[EMAIL PROTECTED]> wrote: > 1. On my server (in my directory) I found "cgi-bin" subdirectory. > > 2. In the "cgi-bin" I have created a file "test.py". > > 3. In that file I put: > #!/usr/bin/python2.4 python > print "Hello, World!" > (I have checked, I have "/usr/bin/

Re: Web programming in Python.

2008-09-28 Thread James Matthews
If you are considering using a framework try Django. I enjoy using it! On Sun, Sep 28, 2008 at 6:40 PM, Michael Crute <[EMAIL PROTECTED]> wrote: > On Sun, Sep 28, 2008 at 6:39 PM, Kurda Yon <[EMAIL PROTECTED]> wrote: > > I am totaly newbie in the Python's web programming. So, I dont even > > know

Re: Web programming in Python.

2008-09-28 Thread Michael Crute
On Sun, Sep 28, 2008 at 6:39 PM, Kurda Yon <[EMAIL PROTECTED]> wrote: > I am totaly newbie in the Python's web programming. So, I dont even > know the basic conceptions (but I have ideas about php-web- > programming). Does it work in a similar way? First, I have to install > a Python-server? There

Re: Web programming in Python.

2008-09-28 Thread Kurda Yon
1. On my server (in my directory) I found "cgi-bin" subdirectory. 2. In the "cgi-bin" I have created a file "test.py". 3. In that file I put: #!/usr/bin/python2.4 python print "Hello, World!" (I have checked, I have "/usr/bin/python2.4" directory.) 4. I give the following permissions to the "tes

Web programming in Python.

2008-09-28 Thread Kurda Yon
type "python" I get the Python command line. Does it mean that I already have everything what I need to start web programming in Python. Should I give *.py extension to the Python programs? I tried the simplest what could I imagine. And it does not work. I have created a file "test.py&q

RE: where do I begin with web programming in python?

2008-05-25 Thread Dutton, Sam
This doesn't really answer your question, but you might want to consider Google App Engine. http://code.google.com/appengine/ Sam Dutton SAM DUTTON SENIOR SITE DEVELOPER 200 GRAY'S INN ROAD LONDON WC1X 8XZ UNITED KINGDOM T +44 (0)20 7430 4496 F E [EMAIL PROTECTED] WWW.ITN.CO.UK P Plea

Re: where do I begin with web programming in python?

2008-05-02 Thread CM
On May 2, 10:18 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > On May 2, 10:07 am, bvidinli <[EMAIL PROTECTED]> wrote: > > > > > i also asked same question in this list last week. > > i foundhttp://www.cherrypy.org/tobe most suitable for me. > > it is basic, easy, pure... > > it contains its

Re: where do I begin with web programming in python?

2008-05-02 Thread [EMAIL PROTECTED]
On May 2, 10:07 am, bvidinli <[EMAIL PROTECTED]> wrote: > i also asked same question in this list last week. > i foundhttp://www.cherrypy.org/to be most suitable for me. > it is basic, easy, pure... > it contains its own webserver, very easy to start. > > others have many framworks, structures, cla

Re: where do I begin with web programming in python?

2008-05-02 Thread 7stud
On May 1, 3:25 pm, jmDesktop <[EMAIL PROTECTED]> wrote: > I have been to the main python site, but am still confused.  I have > been using .net, so it may be obvious how to do this to everyone > else.  I am aware there are various frameworks (Django, Pylons, etc.), > but I would like to know how to

Re: where do I begin with web programming in python?

2008-05-02 Thread bvidinli
i also asked same question in this list last week. i found http://www.cherrypy.org/ to be most suitable for me. it is basic, easy, pure... it contains its own webserver, very easy to start. others have many framworks, structures, classes many many.. i wanted a pure web programming system , i found

Re: where do I begin with web programming in python?

2008-05-01 Thread Paul Rubin
jmDesktop <[EMAIL PROTECTED]> writes: > I am aware there are various frameworks (Django, Pylons, etc.), > but I would like to know how to create web pages without these. If I > have mod_python or fastcgi on apache, where do I start? I don't have > clue where to begin to create a web page from scr

Re: where do I begin with web programming in python?

2008-05-01 Thread George Sakkis
On May 1, 7:13 pm, Graham Dumpleton <[EMAIL PROTECTED]> wrote: > On May 2, 7:45 am, Christian Heimes <[EMAIL PROTECTED]> wrote: > > > > > jmDesktop schrieb: > > > > I have been to the main python site, but am still confused.  I have > > > been using .net, so it may be obvious how to do this to ever

Re: where do I begin with web programming in python?

2008-05-01 Thread Graham Dumpleton
On May 2, 7:45 am, Christian Heimes <[EMAIL PROTECTED]> wrote: > jmDesktop schrieb: > > > I have been to the main python site, but am still confused. I have > > been using .net, so it may be obvious how to do this to everyone > > else. I am aware there are various frameworks (Django, Pylons, etc.

Re: where do I begin with web programming in python?

2008-05-01 Thread Christian Heimes
jmDesktop schrieb: > I have been to the main python site, but am still confused. I have > been using .net, so it may be obvious how to do this to everyone > else. I am aware there are various frameworks (Django, Pylons, etc.), > but I would like to know how to create web pages without these. If

Re: where do I begin with web programming in python?

2008-05-01 Thread Mike Driscoll
s on the topic: "Python Web Programming" by Steve Holden, and "Web Programming in Python" by Thiruvathukal. Check out the cgi-type stuff especially. Hope that helps some. Mike -- http://mail.python.org/mailman/listinfo/python-list

where do I begin with web programming in python?

2008-05-01 Thread jmDesktop
I have been to the main python site, but am still confused. I have been using .net, so it may be obvious how to do this to everyone else. I am aware there are various frameworks (Django, Pylons, etc.), but I would like to know how to create web pages without these. If I have mod_python or fastcg