xgate1 / pylast

Automatically exported from code.google.com/p/pylast
Apache License 2.0
0 stars 0 forks source link

Objects Are Unpickle-able #82

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Please provide any additional information below.

Using stable Pylast object are unpickle-able.
Have used both string and binary formats

Upon retrieval both produce the following message:

TypeError                                 Traceback (most recent call last)
<ipython-input-40-504d2a0c3819> in <module>()
      1 with open('lastfm.txt.pkl') as f:
----> 2     test = p.loads(f.read())
      3 

TypeError: ('__init__() takes exactly 4 arguments (1 given)', <class 
'pylast.WSError'>, ())

Original issue reported on code.google.com by james.ru...@gmail.com on 19 Jan 2013 at 5:00

GoogleCodeExporter commented 8 years ago
I've implemented this in my fork:
https://github.com/hugovk/pylast/issues/83

Original comment by hugovk@gmail.com on 17 Apr 2014 at 1:49