Table Of Contents

JSON store

A Storage module used to save/load key-value pairs from a json file.

class kivy.storage.jsonstore.JsonStore(filename, indent=None, sort_keys=False, **kwargs)[source]

Bases: AbstractStore

Store implementation using a json file for storing the key-value pairs. 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.