Re: Python web app. (advice sought)

2007-01-16 Thread Tim Williams
On 16/01/07, Ralf Schönian [EMAIL PROTECTED] wrote: I would also like to vote for Karrigell. BTW: Does anyone knows how to avoid stopping/starting of the webserver after changing external libraries? I have some own modules under /opt/local/python/lib and import them by extending the path

Re: Python web app. (advice sought)

2007-01-15 Thread Torabisu
Duncan Smith wrote: Hello, I find myself in the, for me, unusual (and at the moment unique) position of having to write a web application. I have quite a lot of existing Python code that will form part of the business logic. This relies on 3rd party libraries (such as numpy) which

Re: Python web app. (advice sought)

2007-01-15 Thread Tim Williams
On 15 Jan 2007 00:52:33 -0800, Torabisu [EMAIL PROTECTED] wrote: Duncan Smith wrote: Hello, I find myself in the, for me, unusual (and at the moment unique) position of having to write a web application. I have quite a lot of existing Python code that will form part of the business

Re: Python web app. (advice sought)

2007-01-15 Thread Torabisu
Tim Williams wrote: On 15 Jan 2007 00:52:33 -0800, Torabisu [EMAIL PROTECTED] wrote: Duncan Smith wrote: Hello, I find myself in the, for me, unusual (and at the moment unique) position of having to write a web application. I have quite a lot of existing Python code that

Re: Python web app. (advice sought)

2007-01-15 Thread Michele Simionato
Duncan Smith wrote: Hello, I find myself in the, for me, unusual (and at the moment unique) position of having to write a web application. I have quite a lot of existing Python code that will form part of the business logic. This relies on 3rd party libraries (such as numpy) which

Re: Python web app. (advice sought)

2007-01-15 Thread bruno . desthuilliers
Duncan Smith a écrit : Hello, I find myself in the, for me, unusual (and at the moment unique) position of having to write a web application. I have quite a lot of existing Python code that will form part of the business logic. This relies on 3rd party libraries (such as numpy) which

Re: Python web app. (advice sought)

2007-01-15 Thread Istvan Albert
Duncan Smith wrote: I've had a look at Django, Turbogears and Plone, and at the moment I am torn between Turbogears and Plone. I Plone is not suited for the type of application you are building (as others have pointed out in this thread). Take a second look at TurboGears (or CherryPy for

Re: Python web app. (advice sought)

2007-01-15 Thread Ralf Schönian
Tim Williams schrieb: On 15 Jan 2007 00:52:33 -0800, Torabisu [EMAIL PROTECTED] wrote: Don't overlook Karrigell either, with a tiny learning curve its always worth consideration, especially if you need rapid development and a web server that will sit on top of your exising .py modules.

Re: Python web app. (advice sought)

2007-01-15 Thread Duncan Smith
Thanks all. It's looking like Turbogears at the moment (unless my boss makes an executive decision). Cheers. Duncan -- http://mail.python.org/mailman/listinfo/python-list

Python web app. (advice sought)

2007-01-14 Thread Duncan Smith
Hello, I find myself in the, for me, unusual (and at the moment unique) position of having to write a web application. I have quite a lot of existing Python code that will form part of the business logic. This relies on 3rd party libraries (such as numpy) which would make porting to e.g.