Pickle is an object serialization module for Python.

learn more… | top users | synonyms

0
votes
1answer
49 views

how to predict how long it will take for python to run a script?

So I want to make sure that I run my program when it is optimal, for example, if it will take 5 hours to complete, I should run it overnight! I do know this program will end, and theoretically I ...
1
vote
1answer
19 views

PyCurl. 'Can't pickle Curl object' error on Windows x64

import multiprocessing import time import pycurl class Bot(multiprocessing.Process): def __init__(self): multiprocessing.Process.__init__(self) self.c = pycurl.Curl() ...
0
votes
3answers
34 views

Python pickle instance variables

I am doing some calculations on an instance variable, and after that is done I want to pickle the class instance, such that I don't have to do the calculations again. Here an example: import cPickle ...
1
vote
3answers
25 views

Class variable dictionary not saving with pickle.dump in python 2.7

I am using pickle to save an object graph by dumping the root. When I load the root it has all the instance variables and connected object nodes. However I am saving all the nodes in a class variable ...
1
vote
1answer
37 views

Django caching - Pickle is slow

Working on optimization of one web-site, I found, that finally pickling of QuerySets becomes bottleneck in caching, and no matter how clever your code could be, unpickling of relatively large QS in ...
0
votes
2answers
37 views

Python, cPickle, pickling lambda functions

I have to pickle an array of objects like this: import cPickle as pickle from numpy import sin, cos, array tmp = lambda x: sin(x)+cos(x) test = array([[tmp,tmp],[tmp,tmp]],dtype=object) pickle.dump( ...
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 ...
0
votes
1answer
45 views

MemoryError during Python list processing

(Python version 2.6.5) I have: boxes_with_sizes_added = [\ [0,0,0,1,1,1,0],\ [785,500,200,787,502,202,1],\ [400,500,600,404,504,604,2],\ [100,200,300,108,208,308,3],\ [50,60,70,51,61,71,0]\ # ...
2
votes
2answers
24 views

Is there an alternative to pickle - save a dictionary (python)

I need to save a dictionary to a file, In the dictionary there are strings, integers, and dictionarys. I did it by my own and it's not pretty and nice to user. I know about pickle but as I know it ...
1
vote
1answer
37 views

Pickling on GAE ndb

I am trying to pickle and unpickle structured data into an ndb.PickleProperty() property like so: month = MonthRecord.get_or_insert(month_yr_str, parent=ndb.Key('Type','Grocery'), ...
0
votes
1answer
14 views

How do I do a Py3k pickle dump?

I'm getting the following error via cgitb: TypeError: must be str, not bytes args = ('must be str, not bytes',) with_traceback = <built-in method with_traceback of TypeError ...
-3
votes
2answers
22 views

cPickle error, writing to file results in u1conflict [closed]

I'm using cPickle to save some data to a file. save_data = open('data/mapdata.bullet', 'wb') save_data.write(pickle.dumps(data)) save_data.close() os._exit(1) The data consists of lists and dicts ...
0
votes
1answer
33 views

Python/SQLAlchemy not updating instances with list of tuples

I've been learning to use SQLAlchemy and am trying to get it to load data already in the database, change values of the objects by adding a tuple to a list, then save/update them in the database. For ...
0
votes
2answers
40 views

python pickle vs sql efficiency

I'm developing an application in Python which requires storing (very) large data sets. Is pickle the most practical way to store the data and retrieve it on request, or should i consider using SQL ...
1
vote
1answer
66 views

How to avoid penalty of pickling a dict vs pickling a list

Introduction I have a dictionary with the following format: dict_list = {'S0':[[list of int],[list of int]], 'S1':[[list of int],[list of int]], ...} with S0's list of ints accessed via ...
-2
votes
1answer
62 views

how to make unpickle function in python? [closed]

For example i have two dictionaries this is what I have tried: def unpickle(filename): open = open(filename, "rb") Dic1 = cPickle.load(open) Dic2 = cPickle.load(open) open.close() ...
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 ...
0
votes
1answer
51 views

How to get number of objects in a pickle?

Is there a short way to get number of objects in pickled file - shorter than writing a function that opens the file, keeps calling pickle.load method and updating num_of_objs by 1 until it catches ...
4
votes
1answer
66 views

How to pickle a namedtuple instance correctly

I'm learning how to use pickle. I've created a namedtuple object, appended it to a list, and tried to pickle that list. However, I get the following error: pickle.PicklingError: Can't pickle ...
0
votes
2answers
44 views

Why does this pickle reach maximum recursion depth without recursion?

This is my code, it contains no recursion, but it hits maximum recursion depth on first pickle... Code: #!/usr/bin/env python from bs4 import BeautifulSoup from urllib2 import urlopen import pickle ...
0
votes
1answer
30 views

Shelve: Can't pickle <class 'method'>: attribute lookup builtins.method failed

I'm using shelve to store some data. Traceback (most recent call last): File "rogue.py", line 312, in <module> curses.wrapper(game) File "/usr/lib/python3.3/curses/__init__.py", line ...
0
votes
0answers
16 views

can't pickle attrgetter objects

I'm getting this error when trying to cache sqlalchemy models loaded from the database. I'm using dogpile.cache with a redis backend. I got exactly the same error using Flask-Cache with a redis ...
0
votes
1answer
33 views

EOF Error on pickling in python

Here is the code that is causing this error. sending thread: data = pickle.dumps (object); receiving thread: self.object = pickle.loads(data) // Erroneous line The error displayed is ...
0
votes
0answers
29 views

Sending encrypted message over network in python using pycrypto and pickle

My code looks as follows: obj = Msg(ip_add, port) #Msg is a class obj.text = pickle.dumps(obj) enc_text = publickey.encrypt(msg,32) enc = pickle.dumps(enc_text) listElement.cSock.sendall(enc) On ...
0
votes
2answers
47 views

Pickle error on code for converting numpy array into shared memory array

Trying to use the code here http://stackoverflow.com/a/15390953/378594 to convert a numpy array into a shared memory array and back. Running the following code: shared_array = ...
5
votes
1answer
52 views

How do I prevent memory leak when I load large pickle files in a for loop?

I have 50 pickle files that are 0.5 GB each. Each pickle file is comprised of a list of custom class objects. I have no trouble loading the files individually using the following function: def ...
1
vote
1answer
32 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

why sometimes shelve module in python create files with different extensions?

I'm running a python program which uses a shelve module on top of a pickle. After running this program sometimes I get one output file as a.data but sometimes i get three output files as a.data.bak, ...
-1
votes
1answer
40 views

Is there any module in Python using which I can get same data size on disk as in memory?

I tried pickle but the size on disk is very large. I tried all the protocols; the output file size on disk is more than the size in memory. I am using the following code: #Here, a is a string. def ...
0
votes
1answer
20 views

What are the exact dynamics of the output file sizes of pickle dumps in Python?

How can I determine the size of the output of a pickle dump before actually dumping it?
0
votes
1answer
27 views

Is it possible to get isinstance or similar type-checking to work with my pickled classes?

I have a really annoying bug, and I've finally tracked it down. I use (or more accurately, already have used) a stand-alone script to create a store of objects, after which I pickle this data ...
1
vote
2answers
79 views

Python, writing an integer to a '.txt' file

Would using the pickle function be the fastest and most robust way to write an integer to a text file? Here is the syntax I have so far: import pickle pickle.dump(obj, file) If there is a more ...
0
votes
1answer
20 views

python using pickled objects with sqlite

I have a large object that is fairly dynamic that I want to serialize and store in my sqlite database. Using the pickle module, I made it into a string but found I had to do a string replace on it to ...
-1
votes
2answers
37 views

using pickle to write a list of lists [closed]

I tried to write a list of lists using pickle import pickle pkl_file=('lol.txt','wb') listoflist=[[1,2],[3,4],[5.6]] pickle.dump(listoflist,pkl_file) but got the following error: Traceback ...
1
vote
1answer
64 views

Python Error: Threaded Matplotlib (Pyplot) Plotting - x and y do not have same first dimension

This is part of a multi-threaded python script (threading.thread) with data transfer via queues that has an error when trying to plot the data gathered using pyplot in matplotlib. This entire script ...
1
vote
1answer
53 views

Python : How to read pickle dump?

I have a pickle dump which I got from a friend and he asked me to read it like : f = open('file.pickle') import pickle l = pickle.loads(f.read()) But I get an ImportError saying no module named ...
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 ...
2
votes
1answer
44 views

Why does a memmap need a filename when I try to reshape a numpy array?

I am getting a stacktrace that I find difficult to understand: screwed_up_code.py in atleast_4d(arr) 28 def atleast_4d(arr): 29 stshape = arr.shape 30 while len(stshape)<4: ...
1
vote
2answers
87 views

Most appropriate conversion of .mat file for database purposes

I am trying to create a database of my experimental results that with a very flexible structure (as different experiments require different experimental conditions). For now, I am thinking about going ...
2
votes
1answer
45 views

Updated pyramid model directory structure now sessions are broken

background So I have a Pyramis app with a whole lot of models that relate to each other in different ways. These models were initially kept in a bunch of different files according to their general ...
2
votes
0answers
73 views

graphite pickle vs line receiver

There seem to be 2 ways to push metrics to graphite/carbon, Line receiver Pickle receiver As per the docs http://graphite.readthedocs.org/en/1.0/feeding-carbon.html pickle is better as it allows ...
1
vote
1answer
61 views

How to get all pickled data

I have a pickled file with some data structures. I don't know the exact amount and types of elements. How to get all objects into a dict or a list? The question is how to iterate through the file not ...
1
vote
1answer
71 views

Creating objects in parallel with a multiprocessing pool?

Python 2.7.3 I have a folder containing thousands of data files. Each data file gets fed to a constructor and heavily processed. Right now I am iterating through the files and processing them ...
4
votes
3answers
147 views

What is the difference between rb and r+b modes in file objects

I am using pickle module in Python and trying different file IO modes: # works on windows.. "rb" with open(pickle_f, 'rb') as fhand: obj = pickle.load(fhand) # works on linux.. "r" with ...
0
votes
1answer
171 views

google app engine 1.7.6 memcache viewer (Python)

I've been having some trouble with the memcache viewer after updating the Python Dev Appserver to Google App Engine 1.7.6 (with Python 2.7). It appears that my memcache isn't updated or isn't ...
2
votes
1answer
83 views

pickle.load() method raising EOFError in read mode in Windows

This is how the code is with open(pickle_f, 'r') as fhand: obj = pickle.load(fhand) This works fine on Linux systems but not on Windows. Its showing EOFError. I have to use rb mode to make it ...
0
votes
3answers
48 views

Unpickling hazard

In the Documentation of the python3 pickle module it says: " The pickle module is not intended to be secure against erroneous or maliciously constructed data. Never unpickle data received from an ...
0
votes
2answers
74 views

Is pickle not compatible with twisted?

I have made 2 application: The client extract data from a sql server (10k lines), and send every line pickled to a "collector" server via socket. The server uses twisted (this is mandatory) and ...

1 2 3 4 5 12