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

2012-10-05 Thread Demian Brecht
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 ent

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

2012-10-05 Thread Joel Goldstick
On Fri, Oct 5, 2012 at 5:29 AM, Hans Mulder wrote: > On 5/10/12 10:03:56, shivakrsh...@gmail.com wrote: >> I need to develop a simple login page using Python language with >> two fields and a button, like: >> >> Username, Password, Login >> >> I know there are some beautiful Python frameworks

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

2012-10-05 Thread Hans Mulder
On 5/10/12 10:03:56, shivakrsh...@gmail.com wrote: > I need to develop a simple login page using Python language with > two fields and a button, like: > > Username, Password, Login > > I know there are some beautiful Python frameworks like > > Django, Grok, WebPy, TurboGears > > which su

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

2012-10-05 Thread Сахнов Михаил
Hi, you can write a simple wsgi app for that, and run it through simple server, for example. http://docs.python.org/library/wsgiref.html 05.10.2012 12:06 пользователь написал: > I need to develop a simple login page using Python language with two > fields and a button, like: > > Username, Pa

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

2012-10-05 Thread shivakrshn49
I need to develop a simple login page using Python language with two fields and a button, like: Username, Password, Login I know there are some beautiful Python frameworks like Django, Grok, WebPy, TurboGears which support web development using Python, but mine is a basic requirement