---------------------------------------------------------------------- This is the API documentation for the gdtest_google_seealso library. ---------------------------------------------------------------------- ## Functions Utility functions compress(data: bytes) -> bytes Compress bytes data. %seealso decompress Args: data: The bytes to compress. Returns: Compressed bytes. decode(data: bytes) -> str Decode bytes to a string. %seealso encode Args: data: The bytes to decode. Returns: Decoded string. decompress(data: bytes) -> bytes Decompress bytes data. %seealso compress Args: data: The bytes to decompress. Returns: Decompressed bytes. encode(data: str) -> bytes Encode a string to bytes. %seealso decode Args: data: The string to encode. Returns: Encoded bytes.