Github link: shared.python.serialize
This is a wrapper around json. It serializes your data objects and is able to load them form disk as well. It’s pretty handy.
import shared.python.serialize as pyjson to_disk = pyjson.save(r"C:\path\file.json", {"data":0}) # save to disk from_disk = pyjson.load(r"C:\path\file.json") # get from saved