CGI database application

F

Fuzzyman

A project I'm involved with needs to keep a database of information -
for an information desk. This would be a list of outside agencies,
with contact details etc, and cross referenced by 'subject'.
It would also be kept as a paper database.

The database would need to be accessed through the network - so a CGI
application running on the server is an obvious choice - but the load
won't be heavy.

Now I can write a simple database application that will could run on
the server (I'm most of the way through writing one for work) - and
that would enable the information to be stored as simple text files -
so the person compiling the database could start it now.

I wondered if anyone had any experiences of frameworks that would be
better than just me starting from scratch ?

(I've done all the code for a user login system anyway).

Regards,

Fuzzy

http://www.voidspace.org.uk/atlantibots/pythonutils.html
 
T

Thomas Guettler

Am Fri, 23 Jul 2004 02:19:13 -0700 schrieb Fuzzyman:
A project I'm involved with needs to keep a database of information -
for an information desk. This would be a list of outside agencies,
with contact details etc, and cross referenced by 'subject'.
It would also be kept as a paper database.

The database would need to be accessed through the network - so a CGI
application running on the server is an obvious choice - but the load
won't be heavy.

Now I can write a simple database application that will could run on
the server (I'm most of the way through writing one for work) - and
that would enable the information to be stored as simple text files -
so the person compiling the database could start it now.

Hi,

You can use quixote. It maps an HTTP-Request to a method-call.
If the load is low, just use CGI (not SCGI)

If no other application is accessing the database,
you can store them as pickles (serialized python objects)

But sure to use some locking if you write to the database.

HTH,
Thomas
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,774
Messages
2,569,599
Members
45,167
Latest member
SusanaSwan
Top