Tagged Questions

pickle module in python

learn more… | top users | synonyms

19
votes
6answers
2k views

Is there an easy way to pickle a python function (or otherwise serialize its code)?

I'm trying to transfer a transfer a function across a network connection (using asyncore). Is there an easy way to serialize a python function (one that, in this case at least, will have no side ...
16
votes
2answers
355 views

Simple, hassle-free, zero-boilerplate serialization in Scala/Java similar to Python's Pickle?

Is there a simple, hassle-free approach to serialization in Scala/Java that's similar to Python's pickle? Pickle is a dead-simple solution that's reasonably efficient in space and time (i.e. not ...
16
votes
3answers
6k views

Can't pickle <type 'instancemethod'> when using python's multiprocessing Pool.map()

I'm trying to use multiprocessing's Pool.map() function to divide out work simultaneously. When I use the following code, it works fine: import multiprocessing def f(x): return x*x def go(): ...
14
votes
3answers
1k views

copy.deepcopy vs pickle

I have tree structure of widgets e.g. collection contains models and model contains widgets I wan to copy whole collection, copy.deepcopy is faster in comparison to 'pickle and de-pickle'ing the ...
12
votes
2answers
237 views

Why can't generators be pickled? [closed]

Python's pickle (I'm talking standard Python 2.5/2.6/2.7 here) cannot pickle locks, file objects etc. It also cannot pickle generators and lambda expressions (or any other anonymous code), because ...
11
votes
1answer
151 views

Why does pickle protocol 2 let me serialise an open file object?

Consider: >>> import pickle >>> thing = open('foobar.txt','w') >>> pickle.dumps(thing) Traceback (most recent call last): File "<stdin>", line 1, in <module> ...
11
votes
3answers
2k views

Why is marshal so much faster than pickle?

From this question and my own benchmarks it seems that the marshal module is about 20-30x faster than cPickle. Why is this so? What functionality does cPickle offer over marshal that justifies this? ...
10
votes
5answers
543 views

dreaded “not the same object error” pickling a queryset.query object

I have a queryset that I need to pickle lazily and I am having some serious troubles. cPickle.dumps(queryset.query) throws the following error: Can't pickle <class ...
10
votes
3answers
135 views

Pickle all attributes except one

What is the best way to write a __getstate__ method that pickles almost all of an object's attributes, but excludes a few? I have an object with many properties, including one that references an ...
10
votes
3answers
1k views

Hitting Maximum Recursion Depth Using Python's Pickle / cPickle

The background: I'm building a trie to represent a dictionary, using a minimal construction algorithm. The input list is 4.3M utf-8 strings, sorted lexicographically. The resulting graph is acyclic ...
9
votes
2answers
169 views

Python memory serialisation

I was wondering whether someone might know the answer to the following. I'm using Python to build a character-based suffix tree. There are over 11 million nodes in the tree which fits in to ...
9
votes
2answers
549 views

Python pickle - how does it break?

Everyone knows pickle is not a secure way to store user data. It even says so on the box. I'm looking for examples of strings or data structures that break pickle parsing in the current supported ...
9
votes
6answers
296 views

Is there a way to really pickle compiled regular expressions in python?

I have a python console application that contains 300+ regular expressions. The set of regular expressions is fixed for each release. When users run the app, the entire set of regular expressions ...
9
votes
5answers
2k views

How to hash a large object (dataset) in Python?

I would like to calculate a hash of a Python class containing a dataset for Machine Learning. The hash is meant to be used for caching, so I was thinking of md5 or sha1. The problem is that most of ...
9
votes
6answers
3k views

Python human readable object serialization

i need to store Python structures made of lists / dictionaries, tuples into a human readable format. The idea is like using something similar to pickle, but pickle is not human-friendly. Other options ...
9
votes
12answers
6k views

Can I pickle a python dictionary into a sqlite3 text field?

Any gotchas I should be aware of? Can I store it in a text field, or do I need to use a blob? (I'm not overly familiar with either pickle or sqlite, so I wanted to make sure I'm barking up the right ...
8
votes
4answers
687 views

How to pickle a scapy packet?

I need to pickle a scapy packet. Most of the time this works, but sometimes the pickler complains about a function object. As a rule of thumb: ARP packets pickle fine. Some UDP packets are ...
8
votes
7answers
9k views

Python: How do I write a list to file and then pull it back into memory (dict represented as a string convert to dict) later?

More specific dupe of 875228—Simple data storing in Python. I have a rather large dict (6 GB) and I need to do some processing on it. I'm trying out several document clustering methods, so I need to ...
7
votes
1answer
60 views

Why can't Ellipsis and NotImplemented be pickled?

I was surprised to find that python (version 3.2.2) was refusing to pickle an object because its dict contained a reference to Ellipsis. Of the other built-in constants, pickle is happy working with ...
7
votes
2answers
112 views

cPickle - different results pickling the same object

Is anyone able to explain the comment under testLookups() in this code snippet? I've run the code and indeed what the comment sais is true. However I'd like to understand why it's true, i.e. why is ...
7
votes
3answers
141 views

Pickle linked objects

I want to pickle an object and a second object that references the first. When I naively pickle/unpickle the two objects, the reference becomes a copy. How do I preserve the link between the two ...
7
votes
2answers
468 views

Why does pickle __getstate__ accept as a return value the very instance it required __getstate__ to pickle in the first place?

I was going to ask "How to pickle a class that inherits from dict and defintes __slots__". Then I realized the utterly mind-wrenching solution in class B below actually works... import pickle class ...
7
votes
3answers
239 views

Ways to store and access large (~10 GB) lists in Python?

I have a large set of strings that I'm using for natural language processing research, and I'd like a nice way to store it in Python. I could use pickle, but loading the entire list into memory would ...
7
votes
6answers
412 views

Python-style pickling for C++?

Does anyone know of a "language level" facility for pickling in C++? I don't want something like Boost serialization, or Google Protocol Buffers. Instead, something that could automatically ...
7
votes
5answers
620 views

Python: Pickling a dict with some unpicklable items

I have an object gui_project which has an attribute .namespace, which is a namespace dict. (i.e. a dict from strings to objects.) (This is used in an IDE-like program to let the user define his own ...
7
votes
4answers
3k views

Multiprocessing: using Pool.map on a function defined in a class

when i run something like from multiprocessing import Pool p = Pool(5) def f(x): return x*x p.map(f, [1,2,3]) it works fine. However, putting this as a function of a class class ...
7
votes
3answers
1k views

Why am I getting an error about my class defining __slots__ when trying to pickle an object?

I'm trying to pickle an object of a (new-style) class I defined. But I'm getting the following error: >>> with open('temp/connection.pickle','w') as f: ... pickle.dump(c,f) ... Traceback ...
6
votes
2answers
280 views

How to “stop” and “resume” long time running Python script?

I wrote Python script that processes big number of large text files and may run a lot of time. Sometimes, there is a need to stop the running script and to resume it later. The possible reasons to ...
6
votes
4answers
630 views

Python: Pickling highly-recursive objects without using `setrecursionlimit`

I've been getting RuntimeError: maximum recursion depth exceeded when trying to pickle a highly-recursive tree object. Much like this asker here. He solved his problem by setting the recursion limit ...
6
votes
4answers
619 views

How to pickle yourself?

I want my class to implement Save and Load functions which simply do a pickle of the class. But apparently you cannot use 'self' in the fashion below. How can you do this? self = cPickle.load(f) ...
6
votes
4answers
1k views

Best way to save complex Python data structures across program sessions (pickle, json, xml, database, other)

Looking for advice on the best technique for saving complex Python data structures across program sessions. Here's a list of techniques I've come up with so far: pickle/cpickle json jsonpickle xml ...
6
votes
3answers
613 views

Gracefully-degrading pickling in Python

(You may read this question for some background) I would like to have a gracefully-degrading way to pickle objects in Python. When pickling an object, let's call it the main object, sometimes the ...
5
votes
1answer
124 views

Alternatives to pickle's `persistent_id`?

I have been using Python's pickle module for implementing a thin file-based persistence layer. The persistence layer (part of a larger library) relies heavily on pickle's persistent_id feature to ...
5
votes
2answers
339 views

Python Distributed Computing (works)

I'm using an old thread to post new code which attempts to solve the same problem. What constitutes a secure pickle? this? sock.py from socket import socket from socket import AF_INET from socket ...
5
votes
1answer
191 views

Which is the better way to pass data into Python Unittest Redirected STDIN or Pickle?

Short Question What is the best way to get data into a Python unittest case ? Background My project is using Python's unittest module as an automated way execute a series of tests that will need to ...
5
votes
3answers
433 views

Pickle a dynamically parameterized sub-class

I have a system which commonly stores pickled class types. I want to be able to save dynamically-parameterized classes in the same way, but I can't because I get a PicklingError on trying to pickle a ...
5
votes
2answers
822 views

How to get unpickling to work with iPython?

I'm trying to load pickled objects in iPython. The error I'm getting is: AttributeError: 'FakeModule' object has no attribute 'World' Anybody know how to get it to work, or at least a ...
5
votes
4answers
715 views

How can I speed up unpickling large objects if I have plenty of RAM?

It's taking me up to an hour to read a 1-gigabyte NetworkX graph data structure using cPickle (its 1-GB when stored on disk as a binary pickle file). Note that the file quickly loads into memory. In ...
5
votes
4answers
984 views

How can I pickle a nested class in python?

I have a nested class: class WidgetType(object): class FloatType(object): pass class TextType(object): pass .. and an oject that refers the nested class type (not an ...
5
votes
2answers
978 views

Python 2.6 send connection object over Queue / Pipe / etc

Given this bug (Python Issue 4892) that gives rise to the following error: >>> import multiprocessing >>> multiprocessing.allow_connection_pickling() >>> q = ...
5
votes
1answer
394 views

Unpickling classes from Python 3 in Python 2

If a Python 3 class is pickled using protocol 2, it is supposed to work in Python 2, but unfortunately, this fails because the names of some classes have changed. Assume we have code called as ...
5
votes
2answers
1k views

How to pickle a CookieJar?

I have an object with a CookieJar that I want to pickle. However as you all probably know, pickle chokes on objects that contain lock objects. And for some horrible reason, a CookieJar has a lock ...
5
votes
7answers
1k views

Lightweight pickle for basic types in python?

All I want to do is serialize and unserialize tuples of strings or ints. I looked at pickle.dumps() but the byte overhead is significant. Basically it looks like it takes up about 4x as much space as ...
5
votes
7answers
3k views

module to create python object representation from xml

I'm searching for an easy to handle python native module to create python object representation from xml. I found several modules via google (one of them is XMLObject) but didn't want to try out all ...
4
votes
1answer
69 views

python script to pickle entire environment

I'm working inside the Python REPL, and I want to save my work periodically. Does anybody have a script to dump all the variables I have defined? I'm looking for something like this: for o in dir(): ...
4
votes
2answers
125 views

Dumping a subclass of gtk.ListStore using pickle

I am trying to dump a custom class using pickle. The class was subclassed from gtk.ListStore, since that made it easier to store particular data and then display it using gtk. This can be reproduced ...
4
votes
1answer
201 views

Saving KDTree object in Python?

I am using Scipy's KDTree implementation to read a large file of 300 MB. Now, is there a way I can just save the datastructure to disk and load it again or am I stuck with reading raw points from file ...
4
votes
2answers
151 views

Python: Pickle derived classes as if they were an instance of the base class

I want to define a base class so that when derived class instances are pickled, they are pickled as if they are instances of the base class. This is because the derived classes may exist on the client ...
4
votes
6answers
473 views

How to deserialize 1GB of objects into Python faster than cPickle?

We've got a Python-based web server that unpickles a number of large data files on startup using cPickle. The data files (pickled using HIGHEST_PROTOCOL) are around 0.4 GB on disk and load into memory ...
4
votes
2answers
263 views

compatibility between CPython and IronPython cPickle

I was wondering whether objects serialized using CPython's cPickle are readable by using IronPython's cPickle; the objects in question do not require any modules outside of the built-ins that both ...

1 2 3 4 5 7