Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!aioe.org!feeder.news-service.com!news2.euro.net!newsgate.cistron.nl!newsgate.news.xs4all.nl!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.005 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'python': 0.08; 'framework,': 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; 'written': 0.14; 'wrote:': 0.14; 'subject:python': 0.14; 'library': 0.15; '(django': 0.16; 'subject:session': 0.16; 'cheers,': 0.19; 'framework': 0.22; "doesn't": 0.25; 'hey': 0.28; 'header:X -Complaints-To:1': 0.32; 'to:addr:python-list': 0.33; 'page.': 0.33; 'header:User-Agent:1': 0.35; 'using': 0.35; 'session': 0.36; 'page': 0.37; 'received:org': 0.38; 'but': 0.38; 'subject:: ': 0.38; 'header:Mime-Version:1': 0.39; 'either': 0.39; 'to:addr:python.org': 0.39; 'getting': 0.40; 'website': 0.66; 'login': 0.69; 'header:Reply-To:1': 0.72; 'reply-to:no real name:2**0': 0.72; 'reply-to:addr:gmail.com': 0.79 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Kev Dwyer Subject: Re: regarding session in python Followup-To: gmane.comp.python.general Date: Tue, 07 Jun 2011 19:09:35 +0100 References: Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit X-Gmane-NNTP-Posting-Host: cpc1-hari12-2-0-cust205.hari.cable.virginmedia.com Mail-Copies-To: kevin.p.dwyer@gmail.com User-Agent: KNode/4.4.10 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list Reply-To: kevin.p.dwyer@gmail.com 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: 15 NNTP-Posting-Host: 82.94.164.166 X-Trace: 1307470196 news.xs4all.nl 49041 [::ffff:82.94.164.166]:40307 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:7169 vipul jain wrote: > hey i am new to python and i want to make a website using python ..... > so for that i need a login page. in this login page i want to use the > sessions... but i am not getting how to do it The Python standard library doesn't include a session framework, but you can either use a web framework written in Python (Django is the most popular). Cheers, Kev