Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #51846 > unrolled thread
| Started by | dieter <dieter@handshake.de> |
|---|---|
| First post | 2013-08-03 07:42 +0200 |
| Last post | 2013-08-03 07:42 +0200 |
| Articles | 1 — 1 participant |
Back to article view | Back to comp.lang.python
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: web development in python without using any webframework dieter <dieter@handshake.de> - 2013-08-03 07:42 +0200
| From | dieter <dieter@handshake.de> |
|---|---|
| Date | 2013-08-03 07:42 +0200 |
| Subject | Re: web development in python without using any webframework |
| Message-ID | <mailman.148.1375508537.1251.python-list@python.org> |
Alok Singh Mahor <alokmahor@gmail.com> writes:
> Hello everyone,
> few months back I started learning python and now I got nice familiarity.
> now i want to use python for creating dynamic database driven websites. and
> I dont want to use existing web frameworks for my work. I am learning
> things so I wont feel lazy to write all the code myself because I want to
> learn.
You likely want to use some (existing) web server (and not develop
this as well)? In this case, you could look at WSGI ("Web Server Gateway
Interface"). It is a specification intended to interface between
a web server and a web application - with the motivation to
facilitate factoring out common tasks (session handling,
authentication, authorization, output transformations, ...).
Back to top | Article view | comp.lang.python
csiph-web