utils
an xml parsing util
parse_from_xml
parse_from_xml (input_text:str, tag_name:str)
*Parse content from an XML-like string for a specific tag.
Args: input_text (str): The input text containing XML-like tags. tag_name (str): The name of the tag to parse.
Returns: str: The content within the specified tag.
Raises: TagNotFoundError: If the specified tag is not found in the text. MultipleTagsError: If multiple instances of the tag are found. NoContentError: If the tag is present but contains no content.*