Re: python web programming for PHP programmers

2008-12-24 Thread D'Arcy J.M. Cain
On Wed, 24 Dec 2008 14:40:31 + (UTC) Nikola Skoric wrote: > a general python tutorial, I just need a tutorial on how to make a > hello world server side script with python. Any suggestions? #! /usr/bin/env python import sys, re colour = re.sub('=', '=#', ''.join(sys.argv[1:])) print """Con

Re: python web programming for PHP programmers

2008-12-24 Thread ajaksu
On Dec 24, 12:40 pm, Nikola Skoric wrote: > I0m a python newbie with PHP background. I've tried to make a web app > from one of my python scripts (which I haven't done before) and I > ended up with: > > echo shell_exec("python foobar.py"); > ?> > which works really nice :-D Clever :) Python can

Re: python web programming for PHP programmers

2008-12-24 Thread Federico Moreira
You can try also web2py (http://mdp.cti.depaul.edu/) but i think you may be interested on http://www.modpython.org/ -- http://mail.python.org/mailman/listinfo/python-list

Re: python web programming for PHP programmers

2008-12-24 Thread Diez B. Roggisch
Nikola Skoric schrieb: I0m a python newbie with PHP background. I've tried to make a web app from one of my python scripts (which I haven't done before) and I ended up with: which works really nice :-D For some reason I can't find no "quick and dirty python web programming tutorial for PHP pro