Hi ,
i have a dump file . i want to load it into a dictionary.
i am using pickle load to load it as shown below:
pkl_file = open( r'D:\work\dumpfile.dat', 'rb+')
FinalTable = {}
FinalTable = pickle.load(pkl_file)
The problem is it is loading only one key and value from the dump file. Can anybody please tell me how to load the full dump file into dictionary.
Dump file values are like:
(dp0F1331114029.4375S'D:\\AAC\\TaskReport.xml'
(dp0F1331114029.46875S'D:\\AAC\\TaskReport.xml'
Bold ones are the keys and path is the value.
Thanks in advance