Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
3
votes
6answers
720 views

Is pickle file of python cross-platform?

I have created a small python script of mine. I saved the pickle file on Linux and then used it on windows and then again used it back on Linux but now that file is not working on Linux but it is ...
2
votes
2answers
66 views

Usage of pickle.dump in Python

I'm trying to learn how to use the pickle module: import pickle x = 123 f = open('data.txt','w') pickle.dump(x,f) Here's what I get: Traceback (most recent call last): File "D:\python\test.py", ...
1
vote
1answer
103 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 ...
0
votes
1answer
202 views

Python: Errors saving and loading objects with pickle module

I am trying to load and save objects with this piece of code I get it from a question I asked a week ago: Python: saving and loading objects and using pickle. The piece of code is this: class ...
0
votes
5answers
358 views

Python: saving and loading objects and using pickle

I´m trying to save and load objects using pickle module. First I declare my objects: >>> class Fruits:pass ... >>> banana = Fruits() >>> banana.color = 'yellow' ...
0
votes
1answer
172 views

Python: saving objects and using pickle. Error using pickle.dump

Hello I have an Error and I don´t the reason: >>> class Fruits:pass ... >>> banana = Fruits() >>> banana.color = 'yellow' >>> banana.value = 30 >>> import ...