Flat file database

Aahz aahz at pythoncraft.com
Tue Dec 23 10:02:22 EST 2003


In article <UQRFb.115936$8y1.365571 at attbi_s52>,
Art Decco <please.dont at email.com> wrote:
>
>Is there any Python module designed to simplify the use of a plain text file
>as a flat file database?

Why do you want plain-text?  I've got a half-assed module for searching
a formatted plain-text database, but the whole point of it is that it
does *not* have a write/update interface -- it's designed to be
maintained with a text editor.  For your purpose, why not just pickle a
Python dict?
-- 
Aahz (aahz at pythoncraft.com)           <*>         http://www.pythoncraft.com/

Weinberg's Second Law: If builders built buildings the way programmers wrote 
programs, then the first woodpecker that came along would destroy civilization.




More information about the Python-list mailing list