---------------------------------------------------------------------- This is the API documentation for the gdtest_mixed_docs library. ---------------------------------------------------------------------- ## Classes Main classes provided by the package Converter(fmt: str = 'json') A data converter. Parameters ---------- fmt The output format. ## Functions Utility functions decode(data: bytes, encoding: str = 'utf-8') -> str Decode bytes to a string. Parameters ---------- data The bytes to decode. encoding The source encoding. Returns ------- str The decoded string. encode(data: str, encoding: str = 'utf-8') -> bytes Encode a string to bytes. Parameters ---------- data The string to encode. encoding The target encoding. Returns ------- bytes The encoded bytes. validate(data: str) -> bool Validate the input data. Args: data: The data string to validate. Returns: True if the data is valid.