Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #55123
| From | John Gordon <gordon@panix.com> |
|---|---|
| Newsgroups | comp.lang.python |
| Subject | Re: Do I really need a web framework? |
| Date | 2013-09-30 21:53 +0000 |
| Organization | PANIX Public Access Internet and UNIX, NYC |
| Message-ID | <l2crsn$5th$1@reader1.panix.com> (permalink) |
| References | <f4a6d31f-cffe-4c03-9586-4f00f9037516@googlegroups.com> |
In <f4a6d31f-cffe-4c03-9586-4f00f9037516@googlegroups.com> dufriz@gmail.com writes:
> 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.
No, it's not necessary. But depending on how large your website is,
using a framework can end up being a lot less work than doing it from
scratch.
> What do you suggest, keeping in mind that I am a newbie and that my
> website project would be very simple and very small?
That depends on how you define "very simple" and "very small".
For example, how many different pages will your website have?
A login page?
A search entry page?
A search results page?
A help page?
An error page?
A logout page?
Any other pages?
I worked on a project that did its own web handling from scratch, and
frankly it was a nightmare. But it wasn't a small project, so yours
might be doable.
--
John Gordon A is for Amy, who fell down the stairs
gordon@panix.com B is for Basil, assaulted by bears
-- Edward Gorey, "The Gashlycrumb Tinies"
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