Getting started
API Documentation
Development
Load object from JSON file.
file (str | bytes) – path to JSON file
str
bytes
object
object stored in JSON file
Examples
>>> file = audeer.path("test.json") >>> audeer.save_json(file, {"a": 1}) >>> audeer.load_json(file) {'a': 1}