Re: Web programming in Python.

2008-09-29 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 the

Re: Web programming in Python.

2008-09-29 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/python2.4

Re: Web programming in Python.

2008-09-29 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-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/python2.4

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 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

Web programming in Python.

2008-09-28 Thread Kurda Yon
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 which contains print Hello

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 test.py:

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 are

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

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

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 [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, classes

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 own webserver,

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

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

2008-05-01 Thread Mike Driscoll
, for learning. Thank you for any help. The web frameworks make it a lot easier. But you can use the httplib modules. You should check out the wiki: http://wiki.python.org/moin/WebProgramming There's also a couple of books on the topic: Python Web Programming by Steve Holden, and Web

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 I

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.), but

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 everyone else.  I

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 scratch

Re: Web Programming thru python

2007-09-19 Thread Tim Roberts
python_lover [EMAIL PROTECTED] wrote: Please help how to execute a py file with xitami. I installed xitami , downloaded lrwp file. accessing the first web application program ... through browser like http://localhost/first.py it is dispaying the source code of the first.py. Please help me how

Web Programming thru python

2007-09-17 Thread python_lover
HI, Please help how to execute a py file with xitami. I installed xitami , downloaded lrwp file. accessing the first web application program import urllib # Get a file-like object for the Python Web site's home page. f = urllib.urlopen(http://www.python.org;) # Read from the object, storing

Re: Web Programming thru python

2007-09-17 Thread danfolkes
I have been wondering the same thing. I know you have to load the mod_python into apache. But I failed on setting that up. I run an ubuntu server. But I would check out a site like this: http://webpython.codepoint.net/mod_python -Daniel On Sep 17, 7:14 am, python_lover [EMAIL PROTECTED]

Re: Web Programming thru python

2007-09-17 Thread Bruno Desthuilliers
danfolkes a écrit : (top post corrected - Daniel, please, avoid top-posting...) On Sep 17, 7:14 am, python_lover [EMAIL PROTECTED] wrote: HI, Please help how to execute a py file with xitami. I installed xitami , downloaded lrwp file. accessing the first web application program import

web programming with Python

2007-02-07 Thread JoJo
Hello, Is there a Quick Reference for Python web programming? Thank you. --Jojo --- 3webXS High Speed Cable or DSL Internet...surf at speeds up to 3.0 Mbps for as low as $24.95/mo...visit www.get3web.com for details -- http

Topic - Tutorial: Web programming in Python with Paste

2005-05-10 Thread Ian Bicking
Topic - Tutorial: Web programming in Python with Paste -- This month Ian Bicking will be presenting a tutorial Python web programming, using several different systems: Python Paste, Webware/WebKit, Zope Page Templates (not just for Zope