Re: Python CGI Scripting Documentation

2006-07-03 Thread Vlad Dogaru
Alex Martelli wrote: snip Wow, I'm new in the field, but even I know your name. It's truly inspiring to be aswered to by you. Thank you, all of you, for your suggestions. I will try to look into the matter using the starting points you've given me, as well as read more about Django. Thanks,

Re: Python CGI Scripting Documentation

2006-07-03 Thread per9000
Hi, I wanted to try this myself a few days ago, my first (working) try had this source code: --- #!/usr/bin/python print 'Content-Type: text/plain' print print 'hell o world' --- (the output is just hell o world\n, but the first four lines are still required I guess, I don't know why, but it

Python CGI Scripting Documentation

2006-07-02 Thread Vlad Dogaru
Hello, I would like to learn web scripting with Python (sure, everyone uses PHP, but I don't like the syntax and Python is more general-purpose and... well, I guess you people know the advantages better than me). Where can I get a thorough introduction to both CGI and using Python for CGI? That

Python CGI Scripting Documentation

2006-07-02 Thread Vlad Dogaru
Hello, I would like to learn web scripting with Python (sure, everyone uses PHP, but I don't like the syntax and Python is more general-purpose and... well, I guess you people know the advantages better than me). Where can I get a thorough introduction to both CGI and using Python for CGI? That

Re: Python CGI Scripting Documentation

2006-07-02 Thread placid
Vlad Dogaru wrote: Hello, I would like to learn web scripting with Python (sure, everyone uses PHP, but I don't like the syntax and Python is more general-purpose and... well, I guess you people know the advantages better than me). Where can I get a thorough introduction to both CGI and

Re: Python CGI Scripting Documentation

2006-07-02 Thread Michael
Sybren Stuvel wrote: Why use CGI when you can use a framework that's so much easier and more powerful? Lots of possible answers, a few: * Fun * Transferable skills * No single solution is ever the answer to all problems (not all problems are nails, not all solutions are hammers)

Re: Python CGI Scripting Documentation

2006-07-02 Thread Alex Martelli
Vlad Dogaru [EMAIL PROTECTED] wrote: Hello, I would like to learn web scripting with Python (sure, everyone uses PHP, but I don't like the syntax and Python is more general-purpose and... well, I guess you people know the advantages better than me). Where can I get a thorough introduction