---------------------------------------------------------------------- This is the API documentation for the gdtest_parser_sphinx library. ---------------------------------------------------------------------- ## Classes Core classes Timer(name: str = 'default') A simple timer for measuring elapsed time. :param name: The name of the timer. :type name: str ## Functions Public functions create_timer(name: str) -> 'Timer' Create a new Timer instance. :param name: The name for the new timer. :type name: str :returns: A new Timer instance. :rtype: Timer format_duration(seconds: float) -> str Format a duration in seconds as a human-readable string. :param seconds: The duration in seconds. :type seconds: float :returns: A formatted duration string. :rtype: str