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


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

web facing static text db

Started by"Fetchinson ." <fetchinson@googlemail.com>
First post2016-04-30 00:29 +0200
Last post2016-05-01 03:44 +1100
Articles 4 — 3 participants

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

  web facing static text db "Fetchinson ." <fetchinson@googlemail.com> - 2016-04-30 00:29 +0200
    Re: web facing static text db Gordon Levi <gordon@address.invalid> - 2016-04-30 18:17 +1000
      Re: web facing static text db "Fetchinson ." <fetchinson@googlemail.com> - 2016-04-30 19:34 +0200
      Re: web facing static text db sum abiut <suabiut@gmail.com> - 2016-05-01 03:44 +1100

#107868 — web facing static text db

From"Fetchinson ." <fetchinson@googlemail.com>
Date2016-04-30 00:29 +0200
Subjectweb facing static text db
Message-ID<mailman.232.1461970081.32212.python-list@python.org>
Hi folks,

I have a very specific set of requirements for a task and was
wondering if anyone had good suggestions for the best set of tools:

* 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?

So far I'm familiar with turbogears but would be willing to learn
anything if sufficiently basic since my needs are pretty basic (I
think).

Cheers,
Daniel


-- 
Psss, psss, put it down! - http://www.cafepress.com/putitdown

[toc] | [next] | [standalone]


#107912

FromGordon Levi <gordon@address.invalid>
Date2016-04-30 18:17 +1000
Message-ID<neq8ibdh4rl2knja0ck4jbi469137jaakn@4ax.com>
In reply to#107868
"Fetchinson ." <fetchinson@googlemail.com> wrote:

>Hi folks,
>
>I have a very specific set of requirements for a task and was
>wondering if anyone had good suggestions for the best set of tools:
>
>* 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?
>
>So far I'm familiar with turbogears but would be willing to learn
>anything if sufficiently basic since my needs are pretty basic (I
>think).
>

What do need that storing the documents in HTML format and Google
Custom Search does not provide
<https://support.google.com/customsearch/answer/2630969?hl=en>?

[toc] | [prev] | [next] | [standalone]


#107918

From"Fetchinson ." <fetchinson@googlemail.com>
Date2016-04-30 19:34 +0200
Message-ID<mailman.265.1462037674.32212.python-list@python.org>
In reply to#107912
On 4/30/16, Gordon Levi <gordon@address.invalid> wrote:
> "Fetchinson ." <fetchinson@googlemail.com> wrote:
>
>>Hi folks,
>>
>>I have a very specific set of requirements for a task and was
>>wondering if anyone had good suggestions for the best set of tools:
>>
>>* 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?
>>
>>So far I'm familiar with turbogears but would be willing to learn
>>anything if sufficiently basic since my needs are pretty basic (I
>>think).
>>
>
> What do need that storing the documents in HTML format and Google
> Custom Search does not provide
> <https://support.google.com/customsearch/answer/2630969?hl=en>?

Wow! Thanks, I was not aware of that, sounds exactly what I need.

Thanks for all the other ideas too.

Cheers,
Daniel



-- 
Psss, psss, put it down! - http://www.cafepress.com/putitdown

[toc] | [prev] | [next] | [standalone]


#107963

Fromsum abiut <suabiut@gmail.com>
Date2016-05-01 03:44 +1100
Message-ID<mailman.294.1462159634.32212.python-list@python.org>
In reply to#107912
Django is an excellent framework. you can use it with sqlite.

cheers

On Sat, Apr 30, 2016 at 7:17 PM, Gordon Levi <gordon@address.invalid> wrote:

> "Fetchinson ." <fetchinson@googlemail.com> wrote:
>
> >Hi folks,go >
> >I have a vo ery specific set of requirements for a task and was
> >wondering if anyone had good suggestions for the best set of tools:
> >
> >* 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?
> >
> >So far I'm familiar with turbogears but would be willing to learn
> >anything if sufficiently basic since my needs are pretty basic (I
> >think).
> >
>
> What do need that storing the documents in HTML format and Google
> Custom Search does not provide
> <https://support.google.com/customsearch/answer/2630969?hl=en>?
> --
> https://mail.python.org/mailman/listinfo/python-list
>

[toc] | [prev] | [standalone]


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


csiph-web