Deeply nested dictionaries - should I look into a database or am I just doing it wrong?

Gregory Ewing greg.ewing at canterbury.ac.nz
Mon Aug 1 02:29:12 EDT 2011


Andrew Berg wrote:

> I have a method that writes the data to disk, but at this point, I don't
> see any problems with just pickling the class instance.

Just keep in mind that if you're not careful, pickles
can end up being tied more closely that you would like
to various internal details of your program, such as
the precise names of the classes involved and which
modules they live in.

-- 
Greg



More information about the Python-list mailing list