Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #55114
| References | <f4a6d31f-cffe-4c03-9586-4f00f9037516@googlegroups.com> |
|---|---|
| Date | 2013-10-01 06:39 +1000 |
| Subject | Re: Do I really need a web framework? |
| From | Tim Delaney <timothy.c.delaney@gmail.com> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.506.1380573585.18130.python-list@python.org> (permalink) |
[Multipart message — attachments visible in raw view] - view raw
On 1 October 2013 05:57, <dufriz@gmail.com> wrote: > I want to set up a very simple website, and I need to know if it is > necessary to use a web framework (e.g. Django) to do basic interactive > operations such as receiving input from the user, looking up a database and > returning some data to the user. > I know that this is exactly the purpose of web frameworks, and that they > work fine. > However, I read somewhere that for small projects such operations can be > managed without a web framework, just by using Python with mod_python or > with the CGI module. Is this correct? > > What do you suggest, keeping in mind that I am a newbie and that my > website project would be very simple and very small? > There is no *need* to use a web framework. But a web framework can make things a lot easier for you. Have a look at webapp2: http://webapp-improved.appspot.com/ Tim Delaney
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Do I really need a web framework? dufriz@gmail.com - 2013-09-30 12:57 -0700 Re: Do I really need a web framework? Tim Delaney <timothy.c.delaney@gmail.com> - 2013-10-01 06:39 +1000 Re: Do I really need a web framework? John Gordon <gordon@panix.com> - 2013-09-30 21:53 +0000 Re: Do I really need a web framework? waynejwerner@gmail.com - 2013-09-30 15:16 -0700 Re: Do I really need a web framework? Roy Smith <roy@panix.com> - 2013-09-30 21:00 -0400
csiph-web