Re: Python simple web development

2009-06-27 Thread laplacia...@gmail.com
On Jun 26, 6:08 pm, Thomas Allen thomasmal...@gmail.com wrote: On Jun 25, 3:29 am, Private Private mail...@gmail.com wrote: Can you suggest anything ? I don't think anything's lighter than web.py. http://webpy.org/ My impression is that webpy is intended for experienced users who might

Re: Python simple web development

2009-06-27 Thread laplacia...@gmail.com
On Jun 27, 2:25 am, laplacia...@gmail.com laplacia...@gmail.com wrote: As Thomas suggests, maybe have a look at Werkzeug ... Typo: s/Thomas/Petr/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Python simple web development

2009-06-27 Thread Kee Nethery
Until I'm an experience Python coder, I'm sticking with built-in packages only. My simple CGI is: #!/usr/bin/env python # this simple CGI responds to a GET or a POST # send anything you want to this and it will parrot it back. # a line that starts with #2 is the old-style code you should

Re: Python simple web development

2009-06-26 Thread bijoy franco
Hi, I am learning pylons..It seems to be very simple and flexible.. Just give a try if it seems interesting for you Thanks Bijoy On Fri, Jun 26, 2009 at 3:02 AM, Gabriel Genellina gagsl-...@yahoo.com.arwrote: En Thu, 25 Jun 2009 04:29:28 -0300, Private Private mail...@gmail.com escribió:

Re: Python simple web development

2009-06-26 Thread Charles Yeomans
Or you could try my approach and write your own web app. Charles Yeomans -- http://mail.python.org/mailman/listinfo/python-list

Re: Python simple web development

2009-06-26 Thread Daniel Fetchinson
What I've read about Django, Turbogears is that they are powerful enough to create big web-based portals, applications, etc. I need just simple forms without any sophisticated functionality. So again: why I am wrong ? Just because something is powerful doesn't mean you can't do simple

Re: Python simple web development

2009-06-26 Thread Thomas Allen
On Jun 25, 3:29 am, Private Private mail...@gmail.com wrote: Hi, I am looking for a python library which will allow me to do a simple web development. I need to use some forms (but nice looking :-) ), creating images based on input from those forms, etc. I have read a bit about Django and

Re: Python simple web development

2009-06-26 Thread Petr Messner
What about Werkzeug? I like its simplicity (well, basically everything I need are WSGI request/response objects :) + some templating library). Petr 2009/6/25 Private Private mail...@gmail.com: Hi, I am looking for a python library which will allow me to do a simple web development. I need

Python simple web development

2009-06-25 Thread Private Private
Hi, I am looking for a python library which will allow me to do a simple web development. I need to use some forms (but nice looking :-) ), creating images based on input from those forms, etc. I have read a bit about Django and TurboGears but I am afraid that this is too big for my requirements

Re: Python simple web development

2009-06-25 Thread Chris Withers
Private Private wrote: from those forms, etc. I have read a bit about Django and TurboGears but I am afraid that this is too big for my requirements (am I wrong ?). You are wrong :-) Can you suggest anything ? http://www.djangoproject.com/ http://bfg.repoze.org/ http://pylonshq.com/

Re: Python simple web development

2009-06-25 Thread samwyse
I just started with web2py (http://www.web2py.com/) for an internal- use-only app that doesn't need to be very pretty. Been using it for about a week and after re-watching the tutorial, I've decided that I'm making things way too complicated. So today I'm going to replace a lot of my code with

Re: Python simple web development

2009-06-25 Thread Private Private
On Jun 25, 10:59 am, Chris Withers ch...@simplistix.co.uk wrote: Private Private wrote: from those forms, etc. I have read a bit about Django and TurboGears but I am afraid that this is too big for my requirements (am I wrong ?). You are wrong :-) Why ? What I've read about Django,

Re: Python simple web development

2009-06-25 Thread Chris Withers
Private Private wrote: What I've read about Django, Turbogears is that they are powerful enough to create big web-based portals, applications, etc. I need just simple forms without any sophisticated functionality. So again: why I am wrong ? Just because something is powerful doesn't mean you

Re: Python simple web development

2009-06-25 Thread Gabriel Genellina
En Thu, 25 Jun 2009 04:29:28 -0300, Private Private mail...@gmail.com escribió: I am looking for a python library which will allow me to do a simple web development. I need to use some forms (but nice looking :-) ), creating images based on input from those forms, etc. I have read a bit about