JSONFile mixin classes.
JSONFileReader mixin class.
Load a JSON file from the filesystem and return it as a Python object.
json_file_location (Union[Path, str]) – The path to the source file.
Union
Path
str
Any
The loaded JSON object.
JSONFileWriter mixin class.
Write a Python object to the filesystem as JSON.
python_object (Any) – The Python object to write to file as JSON.
json_file_location (Union[Path, str]) – The path to the destination file.
None