views:

352

answers:

6

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 working perfectly on windows. Is is so that python is coss-platform but the pickle file is not. Is there any solution to this one???

+1  A: 

You could use json instead of pickle. If it can save your data, you know it's cross platform.

steveha
Not downvoting, but using json for this situation seems kind of awkward.
ChristopheD
It really depends on what he is saving. If it's all lists of numbers and strings, JSON is great. If it's dictionaries and class instances, not so much.
steveha
I am saving Class instances
vikithakar
If you are saving class instances, then just use `pickle`.
steveha
+3  A: 

Maybe you don't open the file in binary mode? See this stackoverflow question

catchmeifyoutry
+4  A: 

The pickle module supports several different data formats. If you are specifying a particular pickle format instead of using the default (0), you may be running into cross-platform binary file problems. You can use plain ASCII pickle files by specifying protocol 0.

Greg Hewgill
+2  A: 

Pickle should be cross-platform, there are versioning/protocol issues, (see http://docs.python.org/library/pickle.html#data-stream-format) but in general if you're using the same release of python on your windows and unix boxes, they should be interoperable.

If you're using pickle as a data transport mechanism, you might want to consider less-implementation specific formats for data storage, such as json, xml, csv, yaml, etc.

ironchefpython
A: 

One interesting idea to try out is PyON (Python Object Notation). The current version seems to work at least for simple cases according to my tests. There seems to have been some disagreement on mailing lists whether the project is a good idea, though.

akaihola
+1  A: 

Python's pickle is perfectly cross-platform.

This is likely due to EOL (End-Of-Line) differences between Windows and Linux. Make sure to open your pickle files in binary mode both when writing them and when reading them, using open()'s "wb" and "rb" modes respectively.

Note: Passing pickles between different versions of Python can cause trouble, so try to have the same version on both platforms.

taleinat