for development i'd love to have a flat file database with the requirements up in the title, but I don't seem to be able to find a database with these requirements. I can't seem to get MetaKit to work. I only need it to work on the development machine, but in the real world my product will have more data and needs more room and will need something better.

Does anyone know of a database engine capable of this or do I need to just use python's pickle and load and save a file?

Joe

link|improve this question

3  
What's wrong with pickle? What's wrong with shelve? – S.Lott Mar 8 '10 at 19:17
i've just looked up Shelve and it looks pretty cool :) if you'd like to post that as an answer that'd be well cool! :D – Joe Simpson Mar 8 '10 at 19:20
feedback

4 Answers

up vote 2 down vote accepted

Use shelve. http://docs.python.org/library/shelve.html

link|improve this answer
feedback

If you're looking for something embeddable/easily distributed take a look at sqlite. It embeds a RDB in a single file on disk. There is also a python interface for couchdb.

However, neither of these is quite the same as MetaKit and may not be appropriate alternatives. Maybe you could elaborate on your difficulties getting it to work?

link|improve this answer
I don't get how to compile it! There's very very limited instructions! (btw welcome to stackoverflow) – Joe Simpson Mar 8 '10 at 19:29
The directions in the README files in the /unix and /python directories were sufficient to build it okay on my Ubuntu box. I haven't tested it so I have no idea if it works, but it compiled. ;) Are you working on Linux or another OS? – terru Mar 8 '10 at 19:53
I'm running MAC OS X Snow Leopard :) – Joe Simpson Mar 9 '10 at 17:55
MetaKit is not pip/easy_install'able. – Erik Allik Jan 4 at 18:12
feedback

A document based flat file database is also known as a file system.

link|improve this answer
totally, because i can just filter through files in literally less than a second... as if – Joe Simpson Mar 8 '10 at 20:29
1  
Then you should have been more specific in your requirements. File systems are essentially b-tree indexed databases. The the original CDDB database was nothing more than a collection of folders with tens of thousands of text files. If you need fancy filtering, or can't map effectively map resources to file names, than whatever you are looking for is not a flat file database. Judging by the fact that you accepted the suggestion of the shelve module, you are looking for an embedded database which is not the same thing as a flat file. – mikerobi Mar 8 '10 at 20:57
A flat file database i thought was a database you stuck in a file. – Joe Simpson Mar 9 '10 at 17:55
1  
Apparently there is no consensus on what a flat file database is. It could refer to any database in a single file, or a bunch of text files on a disk. – mikerobi Mar 9 '10 at 18:29
1  
IMHO, a flat file database is one that uses folders as tables, and files as records (or rows). – alex gray Jan 3 at 20:24
feedback

KirbyBase might fulfil the requirements that you're looking for: it's quite hard to judge because there are so many ways that the question can be interpreted.

http://pypi.python.org/pypi/KirbyBase/1.9

this is actually a client-server database which stores record-based entries, provides quite basic but adequate query capabilities, does record update etc. looks quite neat, and the data's always stored in a text file (looks something similar to CSV) so you can always go in and edit the files with a text editor.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.