Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #7165 > unrolled thread
| Started by | vipul jain <vipulyashla@gmail.com> |
|---|---|
| First post | 2011-06-07 10:44 -0700 |
| Last post | 2011-06-07 21:12 +0200 |
| Articles | 3 — 3 participants |
Back to article view | Back to comp.lang.python
regarding session in python vipul jain <vipulyashla@gmail.com> - 2011-06-07 10:44 -0700
Re: regarding session in python Kev Dwyer <kevin.p.dwyer@gmail.com> - 2011-06-07 19:09 +0100
Re: regarding session in python Michiel Overtoom <motoom@xs4all.nl> - 2011-06-07 21:12 +0200
| From | vipul jain <vipulyashla@gmail.com> |
|---|---|
| Date | 2011-06-07 10:44 -0700 |
| Subject | regarding session in python |
| Message-ID | <d6ab5022-b0c0-43df-991a-bb560a068e02@r35g2000prj.googlegroups.com> |
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
[toc] | [next] | [standalone]
| From | Kev Dwyer <kevin.p.dwyer@gmail.com> |
|---|---|
| Date | 2011-06-07 19:09 +0100 |
| Message-ID | <mailman.2536.1307470196.9059.python-list@python.org> |
| In reply to | #7165 |
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
[toc] | [prev] | [next] | [standalone]
| From | Michiel Overtoom <motoom@xs4all.nl> |
|---|---|
| Date | 2011-06-07 21:12 +0200 |
| Message-ID | <mailman.2539.1307473976.9059.python-list@python.org> |
| In reply to | #7165 |
On Jun 7, 2011, at 20:09, Kev Dwyer wrote: > 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). "Django comes with a user authentication system. It handles user accounts, groups, permissions and cookie-based user sessions. This document explains how things work." https://docs.djangoproject.com/en/dev/topics/auth/ Greetings, -- "Learn to value yourself, which means: fight for your happiness." - Ayn Rand
[toc] | [prev] | [standalone]
Back to top | Article view | comp.lang.python
csiph-web