import cPickle as pickle FILE = open('list_of_foos.pkl', 'rb') l = pickle.load(FILE) FILE.close() for foo in l: print foo.bar()