Table Of Contents

Dictionary store

Use a Python dictionary as a store.

class kivy.storage.dictstore.DictStore(filename, data=None, **kwargs)[source]

Bases: AbstractStore

Store implementation using a pickled dict. See the kivy.storage module documentation for more information.

Changed in version 3.0.0: filename may be a os.PathLike (e.g. pathlib.Path) in addition to a str (or the legacy dict first argument).