Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
970 views
in Technique[技术] by (71.8m points)

python - Saving a kivy widget to a file

So I'm trying to save a kivy widget to a file using cpickle and I get an error.

from kivy.uix.widget import Widget
import cPickle as pickle

foo = Widget()
bar = open('bar.dat', 'w')
pickle.dump(foo, bar)
bar.close()

Gives Traceback like,

Traceback (most recent call last):
  File ".last_tmp.py", line 6, in <module>
    pickle.dump(foo, bar)
  File "QPython/build/python-install/lib/python2.7/copy_reg.py", line 71, in_reduce_ex
TypeError: __init__() takes exactly 0 positional arguments(1 given)

Is there a way to fix this? Or is there a better way to save a widget to a file for later use?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Looks like using higher protocol may help:

#!/usr/bin/python
# -*- coding: utf-8 -*-

try:
    import cPickle as pickle
except:
    import pickle

from kivy.uix.widget import Widget

w = Widget()
w.test = 5
data_string = pickle.dumps(w, protocol=pickle.HIGHEST_PROTOCOL)

x = pickle.loads(data_string)
print x.test

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...