---------------------------------------------------------------------- This is the API documentation for the gdtest_config_parser library. ---------------------------------------------------------------------- ## Functions Public functions connect(host: str, port: int = 5432) -> object Connect to a database. Args: host: Database hostname. port: Port number. Returns: Connection object. disconnect(conn: object) -> None Disconnect from the database. Args: conn: Active connection. query(conn: object, sql: str) -> list Execute a SQL query. Args: conn: Active connection. sql: SQL query string. Returns: List of result rows. fetch_all(conn: object, table: str) -> list Fetch all rows from a table. Args: conn: Active connection. table: Table name. Returns: All rows from the table.