inbetween cPickle and MySQL

Kevin Dahlhausen kdahlhaus at yahoo.com
Wed May 29 14:36:17 EDT 2002


m2 at plusseven.com wrote in message news:<mailman.1022665786.12266.python-list at python.org>...
> I need a simple way to store lots of simple objects (compsed of
> strings only). Right now I'm using cPickle, which means I have to read
> in the intire file to find all object.attribute == X. 

There is a python inteface to Sqlite, which is a file-based SQL
database.  You use the module, no server is needed and it does not
load the entire file into memory.  Currently it returns all results as
strings.

http://members.nccw.net/kdahlhaus/pysqlite/index.html



More information about the Python-list mailing list