---------------------------------------------------------------------- This is the API documentation for the gdtest_parser_google library. ---------------------------------------------------------------------- ## Functions Public functions connect(host: str, port: int = 8080) -> bool Connect to a remote host. Args: host: The hostname or IP address to connect to. port: The port number to use. Defaults to 8080. Returns: True if the connection was successful, False otherwise. disconnect() -> None Disconnect from the remote host. Returns: None. send(data: str) -> int Send data to the remote host. Args: data: The string data to send. Returns: The number of bytes sent. Raises: ConnectionError: If the connection is not established. receive(timeout: float = 5.0) -> str Receive data from the remote host. Args: timeout: The maximum time to wait in seconds. Defaults to 5.0. Returns: The received data as a string. status() -> dict Get the current connection status. Returns: A dictionary with connection status information.