module documentation
ujson wrapper for micropython, part of Stick firmware
Function | read |
Parse json from file |
Function | read |
Parse json from string |
Function | read |
Parse json from gzipped file |
Function | write |
Write json to file |
Parse json from file Args: filename (str): Path to json file Returns: dict | None: Json dictionary or None if failed
Parse json from string Args: data (str): Json string data Returns: dict | None: Json dictionary or None if failed
Parse json from gzipped file Args: filename (str): Path to gzipped json file Returns: dict | None: Json dictionary or None if failed