Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #30828
| From | Dennis Lee Bieber <wlfraed@ix.netcom.com> |
|---|---|
| Subject | Re: How to create a login screen using core python language without using any framework |
| Date | 2012-10-05 14:13 -0400 |
| Organization | > Bestiaria Support Staff < |
| References | <97fa2804-adda-428f-a78a-d9ab3e22e965@googlegroups.com> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.1862.1349460808.27098.python-list@python.org> (permalink) |
On Fri, 5 Oct 2012 01:03:56 -0700 (PDT), shivakrshn49@gmail.com
declaimed the following in gmane.comp.python.general:
>
> 1. Is it possible to create a login page using Python without using a framework?
>
Sure... After all, those frameworks are written in Python...
> 2. I haven't worked on web services and don't know the basics of web development in Python.
>
That's going to be a problem -- since you'll need to understand HTTP
(at the least) to manage session cookies (since someone not logged in
should not be able to direct access the data pages -- they should be
redirected to the log-in page). THEN you can see about what Python
supplies that may assist you.
> 3. If possible, can you provide me an example on how to create a login page using Python and achieve the functionality described above?
Uh, anyone providing an "example" of a log-in page will have
essentially written the 50% of your assignment (since they may have done
a simple server instance, session cookies, authorization database, etc.)
The regulars in this group normally don't "do homework"; we'll
analyze cryptic error messages from runnable code, but won't provide the
code.
--
Wulfraed Dennis Lee Bieber AF6VN
wlfraed@ix.netcom.com HTTP://wlfraed.home.netcom.com/
Back to comp.lang.python | Previous | Next — Previous in thread | Find similar | Unroll thread
How to create a login screen using core python language without using any framework shivakrshn49@gmail.com - 2012-10-05 01:03 -0700
Re: How to create a login screen using core python language without using any framework Hans Mulder <hansmu@xs4all.nl> - 2012-10-05 11:29 +0200
Re: How to create a login screen using core python language without using any framework Joel Goldstick <joel.goldstick@gmail.com> - 2012-10-05 09:11 -0400
Re: How to create a login screen using core python language without using any framework Demian Brecht <demianbrecht@gmail.com> - 2012-10-05 07:41 -0700
Re: How to create a login screen using core python language without using any framework Dennis Lee Bieber <wlfraed@ix.netcom.com> - 2012-10-05 14:13 -0400
csiph-web