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


Groups > comp.lang.python > #107869 > unrolled thread

Re: web facing static text db

Started byChris Angelico <rosuav@gmail.com>
First post2016-04-30 09:23 +1000
Last post2016-04-30 09:23 +1000
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.


Contents

  Re: web facing static text db Chris Angelico <rosuav@gmail.com> - 2016-04-30 09:23 +1000

#107869 — Re: web facing static text db

FromChris Angelico <rosuav@gmail.com>
Date2016-04-30 09:23 +1000
SubjectRe: web facing static text db
Message-ID<mailman.233.1461972213.32212.python-list@python.org>
On Sat, Apr 30, 2016 at 8:29 AM, Fetchinson . via Python-list
<python-list@python.org> wrote:
> * store text documents (about 100000 pages)
> * the data set is static (i.e. only lookups are performed, no delete,
> no edit, no addition)
> * only one operation required: lookup of pages by matching words in them
> * very simple web frontend for querying the words to be matched
> * no authentication or authorization, frontend completely public
> * deployment at webfaction
> * deadline: yesterday :)
>
> Which web framework and db engine would you recommend?

PostgreSQL has decent facilities for text search. You can access that
from Python using the psycopg2 module, and use something like Flask to
help you put together your front end.

ChrisA

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web