cPickle is a Python language module that supports serialization and de-serialization of Python objects.

learn more… | top users | synonyms

0
votes
2answers
26 views

Python: ambiguities when (un-)pickling a dict-based tree

I have a simple tree structure where each node can have several children which are accessed through keys (+ some payload stored in value): class NodeDict(dict): def __init__(self, parent): ...
0
votes
1answer
16 views

Is There a Pickler With a Memo That Doesn't Require a File

We have an interesting use case for Pickler in python. We are doing multiprocessing with objects that have references to objects. In this question about pickling member objects you can see that ...
3
votes
3answers
57 views

Can't pickle defaultdict

I have a defaultdict that looks like this: dict1 = defaultdict(lambda: defaultdict(int)) The problem is, I can't pickle it using cPickle. One of the solution that I found here is to use ...
4
votes
2answers
52 views

Inconsistent cPickle

Why does the following code produce an error when run as a script? It doesn't produce an error when run in an interactive shell (cut-and-paste). import cPickle as pickle val1 = dict(fooblah=[], ...
0
votes
0answers
37 views

Python - Function to open a picklefile?

Suppose I want to write a code that interconnects one function to another. And in each function, there is an argument to use the previously written cPickle file. For example: Function 1 takes 2 ...
1
vote
1answer
33 views

Python: creating file to store histogram?

Do you have any advice in where I should store a histogram? cPickle? Json? Also, should I do: with open('namefile', 'wb') as histogram: .... <code for histogram> .... or should I create the ...
1
vote
1answer
33 views

Python pickle: dealing with updated class definitions

After a class definition is updated by recompiling a script, pickle refuses to serialize previously instantiated objects of that class, giving the error: "Can't pickle object: it's not the same object ...
2
votes
1answer
67 views

python pickler - recursion depth exceeded

I'm trying to pickle instance of my cellular automata class, but I get this error: RuntimeError: maximum recursion depth exceeded while calling a Python object My cellular automata consist from ...
0
votes
1answer
44 views

Saving dict with nested class instances in Python 2.7

I'm trying to keep this as simple as possible. Basically I want the data to be saved to a file, and the retrieve it so that questor.py works and can "remember" everything it was ever taught on your ...
0
votes
0answers
36 views

cPickle underflow error

I'm trying to load a file using cPickle as follows, import cPickle cPickle.load(open('test', 'rb')) However, I get this error, ...
0
votes
2answers
69 views

python pickle - more than 1 object in a file

I have got a method which dumps a number of pickled objects (tuples, actually) into a file. I do not want to put them into one list, I really want to dump several times into the same file. My problem ...
3
votes
1answer
321 views

Pickle: AttributeError: 'module' object has no attribute

I found a lot of threads about this but the problem of all of them is the namespace. My problem have nothing to do with namespace. A small example: import cPickle as pickle from uncertainties import ...
2
votes
1answer
106 views

Remove or edit entry saved with Python pickle

I basically do sequences of dump and load, but at some point I want to delete one of the loaded entries. How can I do that? Is there a way to remove, or edit entries saved with Python pickle/cpickle? ...
0
votes
1answer
142 views

cPickle - unpickling error ONLY when the unpickled stuff is used later on

The code I write now works fine, I can even print the deserialized objects with no mistakes whatsoever, so I do know exactly what is in there. @staticmethod def receiveData(self): ''' This ...
0
votes
1answer
101 views

How can I insert arrays into columns on a database table for my pyramid app?

I am trying to create an sql (sqlite) database where users upload an stl file and the data (all the points, triangles, ect.) is stored in a database so that it is permanently available. Is it ...
0
votes
0answers
122 views

Serializing knn model opencv in python

I have a knn-classifier with OpenCV in a python 2.7 module and works ok, but now, I want to introduce it in my web app, I want the training method only run once and every time I send a new image, I ...
1
vote
1answer
81 views

Pickling Z3 Python Objects

Is support for pickling (or serializing) Z3 objects being considered for future releases? I am currently trying to pickle the model produced by the Z3 Python API to a file, and I get the error message ...
2
votes
1answer
112 views

Python - cPickle nested datetime objects

I have a list of lists, each sublist looking something like this: a = [datetime.datetime(2012, 2, 1), datetime.datetime(2012, 2, 2), 'string', 4.00] b = [datetime.datetime(2012, 3, 1), ...
5
votes
2answers
99 views

cPickle - Ignore stuff it can't serialize instead of raising an exception

I'm using cPickle to serialize data that's used for logging. I'd like to be able to throw whatever I want into an object, then serialize it. Usually this is fine with cPickle, but just ran into a ...
2
votes
1answer
83 views

Python: pickle derived str object

Running: import pickle class Foo(str): def __new__(cls, s, bar): self = super(Foo, cls).__new__(cls, s) self.bar = bar return self with open('foo.pkl', 'wb') as w: x ...
1
vote
1answer
106 views

How to store a big dictionary?

I have a big dictionary(28 MB) 'MyDict' stored in a MyDict.py file. If I execute the statement: from MyDict import MyDict A MemoryError exception is thrown. How can I access this dictionary using ...
2
votes
1answer
51 views

How to decipher this cPickle error?

I have a pickled file called classifier.pkl that I am trying to load into another module. However, I get an error I don't understand. My code to pickle: features = ['bob','ice','snowing'] #... ...
1
vote
2answers
78 views

Python pickling keep object identity

Is there any way to preserve the identity of a pickled object, i.e. have the below print True: import pickle class Foo: pass x = Foo() print(x is pickle.loads(pickle.dumps(x))) #False ...
0
votes
1answer
31 views

EOF when using cpickle to serialize an object

I have the following quote which seems to work fine: from cPickle import * class Clientthread(threading.Thread): def __init__(self,clientsocket, mystring): self.client = clientsocket ...
3
votes
2answers
115 views

Is there a way to view cPickle or Pickle file contents without loading Python in Windows?

I use cPickle to save data sets from each run of a program. Since I sometimes need to see the outline of the data without running the code, I would like an easy way to quickly view the contents by ...
5
votes
2answers
216 views

Unpickling python objects with a changed module path

I'm trying to integrate a project Project A built by a colleague into another python project. Now this colleague has not used relative imports in his code but instead done from packageA.moduleA ...
-2
votes
2answers
98 views

In Python, is zlib implemented in C like cPickle?

As you might know, "cPickle can be up to 1000 times faster than pickle because the former is implemented in C". Is zlib also implemented in C ? In fact I'm trying to reduce the time spent by my ...
0
votes
1answer
93 views

saving a long string using cPickle - saved variable is truncated

I am dumping a string of 0s and 1s of length 4807100171 into a pickle file because I had previous trouble with bitarray and wanted to see if pickle could be a solution to my problem. However, after I ...
1
vote
1answer
192 views

How to load all cPickle dumps from a log file?

I'm going to be running code that will be writing a large number (~1000) of relatively small (50 key:value pairs of strings) dictionaries to a log file. I'll be doing this through a program that ...
0
votes
2answers
246 views

Using zlib and cPickle to compress/decompress a dictionary to files

I am using python to write to a file a zlib compressed and cPickled dictionary. It appears to work, however, I cannot figure out how to read the file back in. I'm including the following code which ...
3
votes
3answers
495 views

Consuming the pickle binary format from non-python (with celery and rabbitmq)

I'm using Python, Celery and RabbitMQ to produce messages from loosely coupled systems. However, I'm worried about interoperability. When inspecting the message payload directly from RabbitMQ, that ...
6
votes
1answer
555 views

Unable to load a previously dumped pickle file of large size in Python

I used cPickle and protocol version 2 to dump some computation results. The code looks like this: > f = open('foo.pck', 'w') > cPickle.dump(var, f, protocol=2) > f.close() The variable ...
1
vote
1answer
391 views

python cPickle unpickling error invalid load key

The python object is a nested list of strings and numbers. The file was was opened for writing as 'w' (not 'wb') but cPickle was told to use protocol=1 (so binary). The serialization and ...
1
vote
2answers
200 views

Python Pickle, avoiding module dependencies

Is there a particular way to pickle objects so that pickle.load() has no dependencies on any modules? I read that while unpickling objects, Pickle tries to load the module containing the class ...
2
votes
2answers
1k views

How to cPickle dump and load separate dictionaries to the same file?

I have a process which runs and creates three dictionaries: 2 rather small, and 1 large. I know I can store one dictionary like: import cPickle as pickle with open(filename, 'wb') as fp: ...
1
vote
1answer
648 views

How can I save a LibSVM python object instance?

I wanted to use this classifier in other computer without had to train it again. I used to save some classifiers from scikit with cPickle. Doing the same with LIBSVM it gives me a " ValueError: ctypes ...
0
votes
0answers
81 views

why jinja2.Environment Can't pickle on google appengine?

Runtime environment: python2.7, gae 1.7.0, jinja2 module in Google/google_appengine/jinja2 When I try: import jinja2 import cPickle xx = jinja2.Environment() from cPickle import Pickler from ...
0
votes
1answer
97 views

web2py application level variables

I'm new to web2py and web application development in general and I have a certain use case in mind that I'm not sure how to solve given the tools and knowledge that I currently have. What I want to ...
0
votes
0answers
151 views

EOF error when loading a cPickled file inside python script, but not in interactive mode

I am trying to open a cPickled object in a python (2.7) script. The structure of the script is the following: from objects_class import * import cPickle for i in range(20): if i>10: f = ...
1
vote
2answers
161 views

Modular serialization with pickle (Python)

I want to perform serialisation of some object graph in a modular way. That is I don't want to serialize the whole graph. The reason is that this graph is big. I can keep timestamped version of some ...
1
vote
2answers
433 views

cPickle.load( ) error

I am working with cPickle for the purpose to convert the structure data into datastream format and pass it to the library. The thing i have to do is to read file contents from manually written file ...
1
vote
0answers
107 views

Referring to Dumped LinkedIn API data

Quick problem here that I don't know how to solve and thought you guys could give me a heads-up on which way to go. I have successfully pulled all my connection data using the LinkedIn REST API both ...
1
vote
2answers
363 views

Python - the best way to serialize data with high performance?

I need to serialize a data which requires high performance. Separated thread will be accessing it each second and must to load data to memory. There will be about 1000 - 10000 dictionary-like entries ...
2
votes
2answers
463 views

C equivalent to python pickle (object serialization)?

What would be the C equivalent to this python code? Thanks. data = gather_me_some_data() # where data = [ (metic, datapoints), ... ] # and datapoints = [ (timestamp, value), ... ] serialized_data ...
0
votes
3answers
149 views

Pickling a “interned” object

Let's say I have a class called Symbol. At any given time, I want one and only one copy of a Symbol with a given id. For example registry = {} class Symbol(object): def __init__(self, id): ...
0
votes
2answers
252 views

Perl equivlent to this Python code

Not Familiar at all with Python, i was wondering if someone could provide the raw perl equiv of the following python code? Thanks. data = [( "somestring.data", (178346464,1234568) )] ...
0
votes
1answer
179 views

Security issues storing config file in json/CPickle

I tried to figure it out, the most secure and flexible solution for storing in config file some credentials for database connection and other private info. This is inside a python module for logging ...
1
vote
1answer
109 views

Pickling exposed classes when there are multiple Boost.Python Modules

I achieved to expose some C++ classes to python with the help of boost. I defined two distinct modules linked statically to my application. I can use the classes defined in those module, derived them, ...
5
votes
3answers
312 views

Pickling a graph with cycles

I have a custom node class in python that is built into a graph (which is a dictionary). Since these take a while to create, I'd like to pickle them so that I don't have to reconstruct them everytime ...
2
votes
2answers
189 views

Nested loops with Python cPickle

I would like to be able to have a series of nested loops that use the same pickle file. See below: def pickleRead(self): try: with open(r'myfile', 'rb') as file: print ...

1 2