Network and socket programming in python

2010-09-04 Thread shivram
i want to learn network and socket programming but i would like to do this in python.Reason behind this is that python is very simple and the only language i know . anybody can suggest me which book should i pick. the book should have following specification-- 1)not tedious to follow 2)lots of exam

Re: disk based dictionaries

2004-12-03 Thread Shivram U
Hi Steve, Larry, Thanks for the Help! I am using the pickle module now as i just need to store and retrieve dictionaries. Best Regards, Shivram U On Thu, 2004-12-02 at 23:59, Steve wrote: > Hi Shivam, > > If storing and retrieving is all that you are interested in, you > sho

disk based dictionaries

2004-12-02 Thread Shivram U
x27;/tmp/beedict') bdict[1] = 1 print bdict.keys() bdict.commit() bdict.close() bdict1 = BeeDict('/tmp/beedict') print bdict1.keys() print bdict1.values() Would it be that using disk based dictionaries once opened are as fast as in memory dictionaries ? Thanks in advance, Best R