Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!gegeweb.org!de-l.enfer-du-nord.net!feeder1.enfer-du-nord.net!feeder.news-service.com!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.006 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'forth.': 0.07; 'script,': 0.07; 'python': 0.08; 'folks,': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:80.91.229.12': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'received:lo.gmane.org': 0.09; 'benjamin': 0.16; 'from:addr:paul': 0.16; 'integrated.': 0.16; 'sqlite3': 0.16; 'header:In-Reply- To:1': 0.22; 'paul': 0.28; 'framework': 0.28; 'layers': 0.30; 'subject:Database': 0.30; 'hi,': 0.32; 'familiar': 0.32; 'to:addr :python-list': 0.33; 'subject:Web': 0.34; 'header:User-Agent:1': 0.34; 'quite': 0.34; 'from:charset:iso-8859-1': 0.35; 'header:X -Complaints-To:1': 0.35; 'question': 0.36; 'but': 0.37; 'think': 0.38; 'received:org': 0.38; 'some': 0.38; 'subject:: ': 0.39; 'header:Mime-Version:1': 0.39; 'basic': 0.39; 'to:addr:python.org': 0.39; "i'd": 0.40; 'might': 0.40; "it's": 0.40; 'your': 0.61; 'hands': 0.64; 'ever': 0.65; 'compose': 0.84; 'schrieb': 0.84 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: =?ISO-8859-1?Q?Paul_K=F6lle?= Subject: Re: Need advice on Web / Database framework... Date: Sat, 03 Sep 2011 20:59:27 +0200 References: <21960A6D-CD06-4F0C-AC35-8D176E964B38@schollnick.net> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Gmane-NNTP-Posting-Host: dslb-088-072-013-018.pools.arcor-ip.net User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:6.0.1) Gecko/20110830 Thunderbird/6.0.1 In-Reply-To: <21960A6D-CD06-4F0C-AC35-8D176E964B38@schollnick.net> X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 24 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1315076403 news.xs4all.nl 2523 [2001:888:2000:d::a6]:37573 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:12715 Hi, Am 03.09.2011 16:11, schrieb Benjamin Schollnick: > Folks, > > I need some advice on a python web& database framework to use...? Hardest question ever ;) > > I have handcrafted a sqllite3 python script, that is a basic web > application, interfacing with a sqlite3 database... > > But I am concerned at the thought of handcrafting a administration > interface, and so forth. If you are not familiar with the various pitfalls of web security I'd recomment a framework which has all the layers already integrated. Take a look at http://www.web2py.com, I think it's quite powerful and has good documentation. If you want to get your hands dirty you can compose your own "framework" cherrypy+sqlalchemy+cheetah might be a good combination. hth Paul