Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
119 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 ...
6
votes
3answers
98 views

Unpickling a function into a different context in Python

I have written a Python interface to a process-centric job distribution system we're developing/using internally at my workplace. While reasonably skilled programmers, the primary people using this ...
5
votes
3answers
47 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 ...
5
votes
5answers
518 views

Fastest way to save and load a large dictionary in Python

I have a relatively large dictionary. How do I know the size? well when I save it using cPickle the size of the file will grow approx. 400Mb. cPickle is supposed to be much faster than pickle but ...
3
votes
1answer
73 views

I have a cPickle error and does not know what he means maybe anyone know what this means?

I use a process communication RMC for which the code may be found below: HOST = '' # local host PORT = 50000 SERVER_ADDRESS = HOST, PORT # set up server socket s = ...
3
votes
1answer
2k views

Python “IOError: [Errno 22] Invalid argument” when using cPickle to write large array to network drive

EDIT: At the suggestion of J. F. Sebastian, I can get the same error much more simply: Python 2.6.4 (r264:75708, Oct 26 2009, 08:23:19) [MSC v.1500 32 bit (Intel)] Type "copyright", "credits" or ...
3
votes
1answer
191 views

Does linux disk buffer cache make python cPickle more efficient than shelve?

Is IO more efficient, due to the linux disk buffer cache, when storing frequently accessed python objects as separate cPickle files instead of storing all objects in one large shelf? Does the disk ...
3
votes
2answers
191 views

Help with cPickle in Python 2.6

I tried the following code I python. This is my first attempt at pickling. import Tkinter import cPickle root = Tkinter.Tk() root.sclX = Tkinter.Scale(root, from_=0, to=1500, orient='horizontal', ...
2
votes
2answers
56 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 ...
2
votes
1answer
125 views

Python serialization - Why pickle?

I understood that Python pickling is a way to 'store' a Python Object in a way that does respect Object programming - different from an output written in txt file or DB. Do you have more details or ...
2
votes
2answers
90 views

Condensing output with python and multiprocessing

so I've been writing numerical stuff with numpy and multiprocessing for some time now. It works ok, but I'm having trouble collecting the results. I've done it in the following way, I take a queue for ...
2
votes
1answer
71 views

Is it possible to force cPickle to use breadth-first rather than depth-first recursion?

I realise the answer is very likely to be 'no'! Basically, I have a graph (the nodes and edges kind) which represents a grid of squares; each node object contains references to every other node that ...
2
votes
3answers
107 views

Accessing items from a dictionary using pickle efficiently in Python

I have a large dictionary mapping keys (which are strings) to objects. I pickled this large dictionary and at certain times I want to pull out only a handful of entries from it. The dictionary has ...
1
vote
1answer
69 views

How to create a Python nested dictionary from 2 pkl files/combine 2 nested dictionaries into one?

I am trying to combine two nested Python dictionaries together. Each of them has 10 keys at the top level and then each of the 10 keys has 2 more keys: 'datetimes' and 'values'. At the low level each ...
1
vote
4answers
102 views

Python pickle: fix \r characters before loading

I got a pickled object (a list with a few numpy arrays in it) that was created on Windows and apparently saved to a file loaded as text, not in binary mode (ie. with open(filename, 'w') instead of ...
1
vote
1answer
74 views

cPickle.UnpicklingError: pickle data was truncated

i use a Remote Procedure call to communicate between two prozesses. I send objects from the on hand to the other. the object is a object by a django model. The object has different variables, integers ...
1
vote
3answers
135 views

Saving Python Pickled objects in MySQL db

I am pickling Python Objects in Django and saving it in MySQL db. So far i have followed these simple rules: cPickle.dumps(object) #to convert python object to pickled object ...
1
vote
1answer
126 views

Python Pickle Load Takes Longer Each Iteration

I have a gzip'd pickled file that is 4mb in size. Each time I open the file and load it the time it takes to unpickle takes longer. The contents of the file never change and the size stays the same. ...
1
vote
1answer
107 views

Pickling a list consisting of 'n' 2-tuple values

I want to pickle a list as it takes a long time for me to create the list. The list consists of "n" 2-tuple values where the first tuple value is a large dictionary(1k to 10k keys) and the second ...
1
vote
2answers
214 views

How to save a dictionary containing utf-8 characters as its keys to a file with cPickle Python?

I want to know How to save a dictionary containing utf-8 characters as its keys to a file in Python with cPickle? this dictionary is very large and I've heard that cPickle is much faster than pickle. ...
1
vote
4answers
228 views

How do I store then retrieve Python-native data structures into and from a file?

I am reading an XML file and reorganizing the desired data into Python data structures (lists, tuples, etc.) For example, one of my XML parser modules produces the following data: # data_miner.py ...
1
vote
1answer
90 views

Need help making a program remember settings, cPickle

How do I make this code remember the last position of the scale, upon reopening? import Tkinter import cPickle root = Tkinter.Tk() root.sclX = Tkinter.Scale(root, from_=0, to=1500, ...
1
vote
4answers
1k views

cPickle ImportError: No module named multiarray

I'm using cPickle to save my Database into file. The code looks like that: def Save_DataBase(): import cPickle from scipy import * from numpy import * a=Results.VersionName ...
0
votes
3answers
47 views

how long can i store data in cPickle?

I'm storing a list of dictionaries in cPickle, but need to be able to add and remove to/from it occasionally. If I store the dictionary data in cPickle, is there some sort of limit on when I will be ...
0
votes
2answers
21 views

Python path issue with pickled class

I have a class call Monkey, defined in root/ook/monkey.py. Another script, let's call it do_things.py pickles instances of Monkey objects. The script do_things.py looks like: import monkey [...] ...
0
votes
0answers
139 views

UnpicklingError invalid load key, '{'

I am working on an application which is in Django. I am trying to store some data structure e.g. dictionary in MySQL db. So i use Python Pickle module. It works fine when i store it in db using ...
0
votes
2answers
95 views

How to pickle several .txt files into one pickle

I need to overcome some cPickle constrains, namely i need to open several files and pickle them to one file, like this: import cPickle file1=open('file1.txt','r') file2=open('file2.txt','r') ...
0
votes
1answer
77 views

Python: Modify pickled objects

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 ...
0
votes
3answers
115 views

Python pickle crash when trying to return default value in __getattr__

I have a dictionary like class that I use to store some values as attributes. I recently added some logic(__getattr__) to return None if an attribute doesn't exist. As soon as I did this pickle ...
0
votes
0answers
121 views

Trouble unpickling a blob column in python

I'm trying to unpickle a blob column called "rules". The problem is that I don't know what the data type of the output is, and I think that's what's causing my error. If I do a SELECT on the column, ...
0
votes
1answer
111 views

using cPickle returns only the first entry in the file

I am storing a dictionary object into file using cPickle, and not able to get any other entry other than the first one. Initially the file tweets.pkl is empty, and the EOFError is raised. I am sure it ...
0
votes
0answers
164 views

Why do I get the following error while trying to use cPickle?

The Error: Traceback (most recent call last): File "<string>", line 244, in run_nodebug File "C:\Python26\pickleexample.py", line 13, in <module> place = cPickle.load(f) ...
0
votes
3answers
1k views

How do I fix this unicode/cPickle error in Python?

ids = cPickle.loads(gem.value) loads() argument 1 must be string, not unicode