Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #30819

Re: How to create a login screen using core python language without using any framework

Date 2012-10-05 07:41 -0700
From Demian Brecht <demianbrecht@gmail.com>
Subject Re: How to create a login screen using core python language without using any framework
References <97fa2804-adda-428f-a78a-d9ab3e22e965@googlegroups.com> <506ea86d$0$6969$e4fe514c@news2.news.xs4all.nl> <CAPM-O+xb5eapqdfuGy1JgBzwVSieGaJLtF+JwHmMYziVi0bEWQ@mail.gmail.com>
Newsgroups comp.lang.python
Message-ID <mailman.1853.1349448101.27098.python-list@python.org> (permalink)

Show all headers | View raw


On 12-10-05 06:11 AM, Joel Goldstick wrote:

> I totally agree about using a framework.  You say you want a 'simple'
> 3 page website.  Why do you think it is simple?  You say you don't
> have any skills at creating websites with python.  From your
> description, you will need to build a directory of entries, a form,
> and attach it to a database, so that means you also need to understand
> sql (or something!). You need to display individual records I imagine.
>   Do you need to edit them after they are created?  How are you going
> to manage the accounts?  Will you create them?  Will you let the
> visitor create an account?  Where will you store the account
> information?  Do different accounts have different permissions?
>
Not to mention security. Frameworks like Django provide protection 
against things like:

* CSRF (Cross Site Request Forgery)
* XSS ((X)Cross Site Scripting)
* SQL injection

As well as others. For a comprehensive list of protection that Django 
offers, check out https://docs.djangoproject.com/en/dev/topics/security/.

-- 
Demian Brecht
@demianbrecht
http://demianbrecht.github.com

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


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