Re: [Tutor] python web dev

2007-01-11 Thread Hugo González Monteverde
OkaMthembo wrote: > this is my first post. please could you tell me which is the best > lightweight python web framework? also, which is the best templating > language for python? (which can handle other data formats in addition to > text). so far im lured by Cheetah, although i havent done any

Re: [Tutor] python web dev

2007-01-05 Thread wesley chun
> has anybody run a python web app under lighttpd? i currently use this at work (on linux/centOS)... we're using FastCGI with ligHTTPD via the WSGI-compliant fcgi.py module which can be found all over, but the main source comes in the FLUP pkg found at http://www.saddi.com/software/flup/ good luc

Re: [Tutor] python web dev

2007-01-05 Thread Christopher Arndt
OkaMthembo schrieb:> i think id feel more confortable with a framework thatd provide a basic > MVC architecture and leave me to roll my own SQL etc, not one that will > generate half a project for me. With TurboGears you're not bound to SQLObject or SQLAlchemy. You can roll your own database acces

Re: [Tutor] python web dev

2007-01-05 Thread Kent Johnson
OkaMthembo wrote: > Thanks Gents, > > You do all make sense to me. My dilemma really, is that im from a .NET > background where i write business logic in C# and write my own stored > procs, etc...with the "cosmetic" design fully seperated from it all. so > i think id feel more confortable with

Re: [Tutor] python web dev

2007-01-05 Thread OkaMthembo
Thanks Gents, You do all make sense to me. My dilemma really, is that im from a .NET background where i write business logic in C# and write my own stored procs, etc...with the "cosmetic" design fully seperated from it all. so i think id feel more confortable with a framework thatd provide a bas

Re: [Tutor] python web dev

2007-01-04 Thread Kent Johnson
OkaMthembo wrote: > hi pythonistas! > > this is my first post. please could you tell me which is the best > lightweight python web framework? also, which is the best templating > language for python? (which can handle other data formats in addition to > text). so far im lured by Cheetah, althou

Re: [Tutor] python web dev

2007-01-04 Thread Noufal Ibrahim
OkaMthembo wrote: > hi pythonistas! > > this is my first post. please could you tell me which is the best > lightweight python web framework? also, which is the best templating > language for python? (which can handle other data formats in addition to > text). so far im lured by Cheetah, although

Re: [Tutor] python web dev

2007-01-04 Thread Christopher Arndt
OkaMthembo schrieb: > this is my first post. please could you tell me which is the best > lightweight python web framework? "Web framework" and "lightweight" don't really go well together. There are so many things about web programming that you don't realise you need when you start, but *will* com

Re: [Tutor] python web dev

2007-01-04 Thread Christopher Arndt
Simon Brunning schrieb: > On 1/4/07, OkaMthembo <[EMAIL PROTECTED]> wrote: >> also, which is the best templating >> language for python? (which can handle other data formats in addition to >> text). so far im lured by Cheetah, although i havent done any web dev with >> python yet. > > Cheetah's go

Re: [Tutor] python web dev

2007-01-04 Thread Mike Hansen
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of OkaMthembo > Sent: Thursday, January 04, 2007 9:12 AM > To: tutor@python.org > Subject: [Tutor] python web dev > > hi pythonistas! > > this is my first post.

Re: [Tutor] python web dev

2007-01-04 Thread Simon Brunning
On 1/4/07, OkaMthembo <[EMAIL PROTECTED]> wrote: > this is my first post. Welcome! > please could you tell me which is the best > lightweight python web framework? Best? That's a potentially contensious one. But I can tell you that if you were to look at either Django or TurboGears you wouldn't

[Tutor] python web dev

2007-01-04 Thread OkaMthembo
hi pythonistas! this is my first post. please could you tell me which is the best lightweight python web framework? also, which is the best templating language for python? (which can handle other data formats in addition to text). so far im lured by Cheetah, although i havent done any web dev wit