DictStore
2016/02/20
Python2.7.10, Kivy1.9.1
データ保存方法のひとつ、辞書型データで保存する
生成
from kivy.storage.dictstore import DictStore
filepath = 'test.txt'
store = DictStore(filepath)
保存
store.put('score', best=50)
読み込み
score = store.get('score')
{best: 50}
こんな辞書型データが返ってくる
http://blog.rhesoft.com/2015/01/30/python-for-android-tutorial-6-saving-and-reading-user-data/
https://kivy.org/docs/api-kivy.storage.html#module-kivy.storage