On Tue, 2006-08-01 at 10:41 -0300, Gerhard Fiedler wrote: > On 2006-08-01 04:11:18, Cliff Wells wrote: > > > You say that you haven't tried Django or any other Python framework. > > Perhaps you should. You seem to have at least the start of the right > > idea about web application organization, so I think you'd be pleasantly > > surprised with what you'll find already done for you by the major Python > > frameworks and how much time you'll stop wasting on code that isn't part > > of your application. > > I've checked it out quickly, and it seems that it is not possible to > install e.g. TurboGears on a typical shared host -- as a normal user. You > seem to run a shared hosts farm (IIRC). What's your point of view of > hosting TurboGears or Django on a shared host? Is that (reasonably) > possible?
There's quite a few actually: http://www.turbogears.org/preview/docs/deployment/hosting.html That's just a few picks Kevin made, there are many more. As I understand it textdrive also supports TG. For myself, I handle user-installation of TurboGears pretty much like I do all user-installed Python packages: using setuptools. Any user who uses easy_install or 'python setup.py install' gets their packages automatically installed into a subdirectory of their home directory and that takes precedence over the system installed packages. Works like a charm. Regards, Cliff -- -- http://mail.python.org/mailman/listinfo/python-list
