Tagged Questions
0
votes
1answer
16 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 ...
0
votes
1answer
60 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 ...
0
votes
1answer
55 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 ...
5
votes
1answer
62 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 ...
2
votes
1answer
58 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 ...
0
votes
1answer
76 views
python 33 pickle class instance in dict
the following code
import pickle
class Member:
global members
try:
with open('member dict.txt','rb') as f:
members=pickle.load(f)
except:
members={}
def ...
0
votes
0answers
137 views
Python pickle.load throws __init___ error
In python 3.3 I have written some code which attempts to pickle an instance of a user-defined class. The pickling seems to go well but on unpickling I get this error:
Traceback (most recent call ...
0
votes
4answers
137 views
Using Python's pickle to open and save a dictionary
In the final days of my intro comp sci class, we got to creating dictionaries. A homework program in our book asks us to create something that can look up, add, change, and delete a set of names and ...
0
votes
1answer
68 views
Python Pickling Problems
I have here some python 3 code that uses the "pickle" module. It is supposed to store high scores for a game. When I open the program again it instead gives me the default "A : 100..." high scores.
...
1
vote
1answer
215 views
gnupg decrypt python
New to python and programming. Currently writing a little python 3 code to keep my Bank Account login details etc. I've had it working by opening and closing a file and using the out='filename' for ...
1
vote
2answers
84 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
...
1
vote
1answer
120 views
EOFError Python 2.7 to 3 migration [duplicate]
Possible Duplicate:
builtins.TypeError: must be str, not bytes
I wrote a program to write a dict to file and in Python 2.7 it works well, but now in Python 3 I receive TypeError: 'str' does ...
0
votes
1answer
71 views
Python pickling error trying to pickle pygame Event object
I am trying to pickle a pygame.event.Event object:
eventObj= pygame.event.get()[0]
data= pickle.dumps(eventObj)
but I get this error:
_pickle.PicklingError: Can't pickle <class 'Event'>: ...
2
votes
1answer
53 views
Encode with JSON or pickle to a Variable Using Python
I know it is possible to encode a Python object to a file using
import pickle
pickle.dump(obj, file)
or you can do nearly the same using JSON, but the problem is, these all encode or decode to a ...
2
votes
2answers
2k views
Perform a for-loop in parallel in Python 3.2 [duplicate]
Possible Duplicate:
how do I parallelize a simple python loop?
I'm quite new to Python (using Python 3.2) and I have a question concerning parallelisation. I have a for-loop that I wish to ...
4
votes
2answers
364 views
Pickle incompatability of numpy arrays between Python 2 and 3
I am trying to load the MNIST dataset linked here in Python 3.2 using this program:
import pickle
import gzip
import numpy
with gzip.open('mnist.pkl.gz', 'rb') as f:
l = list(pickle.load(f))
...
1
vote
1answer
236 views
Transmit data over ssh using pythons pickle
I would like to send a unicode string through a pipe in ssh using pythons pickle and pipes:
import subprocess
import pickle
cmd=['ssh', 'user@host', '/usr/bin/env', 'python3', '-c', \
'"import ...
1
vote
2answers
155 views
Sharing Data in Python
I have some Pickled data, which is stored on disk, and it is about 100 MB in size.
When my python program is executed, the picked data is loaded using the cPickle module, and all that works fine.
If ...
3
votes
1answer
555 views
python 3.2 pickle.load results in EOFError randomly
I encounter a very strange error. I have a cronjob that run daily: it opens a pickled file, load that file and then process the data. At the end of the script, it will save the data to that file for ...
1
vote
1answer
503 views
pickling class method
I have a class whose instances need to format output as instructed by the user. There's a default format, which can be overridden. I implemented it like this:
class A:
def __init__(self, params):
...
3
votes
1answer
384 views
Pickling using protocol 2: Python3->2 data
I am trying to data a data array created in Python3.2, pickle it, and then open it in Python2.7. However, there is some part of the data that Python2.7 is objecting to, even though on a sample of the ...
1
vote
1answer
184 views
Pygame error with pickling
I have a pygame game, before I tried to pickle It worked perfectly, but afterwards
I started to get an error.
Traceback (most recent call last):
File "C:\Users\Knowhaw\Desktop\Python ...
2
votes
1answer
2k views
TypeError: 'str' does not support the buffer interface - python
I'm currently doing an online Python puzzle series, and I've gotten to a problem where you need to unload a pickled file. I read the documentation on it, but I kept getting
TypeError: 'str' does not ...
2
votes
0answers
303 views
Is this the right way to pickle instance methods? If yes, why isn't it in Python 3?
Instance methods can not automatically be pickled in both Python 2 or Python 3.
I need to pickle instance methods with Python 3 and I ported example code of Steven Bethard to Python 3:
import ...
1
vote
1answer
285 views
unpickling python 2.6 object in python 3.1.1
In python 2.6, I defined a class Abc, made a dict d where keys are strings and values are abc objects. Then I dumped this dict to a file like this-
pickle.dump(d, open('filename.pkl', 'wb'))
I can ...
1
vote
1answer
889 views
UnicodeDecodeError: 'gbk' codec can't decode bytes
I'm trying to load an object (of a custom class Area) from a file using pickler. I'm using python 3.1.
The file was made with pickle.dump(area, f)
I get the following error, and I would like help ...
0
votes
1answer
895 views
Python Programming for the absolute beginner Chapter 7 Challenge 2
I've been trying to learn python using this book, however, I seem to be stuck on this challenge.
"2. Improve the Trivia Challenge game so that it maintains a high-scores list in a file. The program ...
7
votes
1answer
1k views
Pickling an unbound method in Python 3
I would like to pickle an unbound method in Python 3.x. I'm getting this error:
>>> class A:
... def m(self):
... pass
>>> import pickle
>>> pickle.dumps(A.m)
...
5
votes
1answer
634 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 ...

