I have a python script (script 1) which generate a large python dictionary. This dictionary has to be read by an another script (script 2). Could any one suggest me the bes
shelve will give you access to each item separately, instead of requiring you to serialize and deserialize the entire dictionary each time.