I am using cPickle to store objects. Later I would like to modify individual records. Unfortunately the file is getting corrupted after modification (I am getting UnpicklingError):
create and Pickle
class Book(object):
def __init__(self, title, author, ISBN, price):
self.title = title
self.author = author
self.ISBN = ISBN
self.price = price
def main():
from cPickle import dump
from random import choice
from random import randrange
letters = ("a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k",
"l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v",
"w", "x", "y", "z")
f = open("books.dat", "a+b")
for ctr in range(0, 20):
title = ""
author = ""
ISBN = ""
price = randrange(20,100)
for i in range(10):
title+=choice(letters)
author+=choice(letters)
ISBN+=str(randrange(0,14))
book = Book(title, author, ISBN, price)
# writing structure
dump(book, f)
f.close()
print "Finished."
main()
unPickle and modify
class Book(object):
def __init__(self, title, author, ISBN, price):
self.title = title
self.author = author
self.ISBN = ISBN
self.price = price
def __str__(self):
rep = self.title+" by "+self.author+".\n"
rep += "ISBN: "+self.ISBN+"\n"
rep += "Price: "+str(self.price)
return rep
def main():
from cPickle import load
from cPickle import dump
import sys
books = []
EOF = False
f = open("books.dat", "r+b")
print "Loading..."
while not EOF:
try:
book = load(f)
except(EOFError):
EOF = True
else:
books.append(book)
print "Load complete."
rec = int(raw_input("Record to delete: "))
print books[rec]
fwd = 0
for i in range(rec):
fwd+= sys.getsizeof(books[i])
print str(fwd)
title = "New"
author = "New"
ISBN = "New"
price = 0
new = Book(title, author, ISBN, price)
print str(sys.getsizeof(new))
f.seek(fwd)
dump(new, f)
f.close()
main()