Module music_df.read_xml
Functions
def read_xml(input_path: str, sort: bool = True, warn: bool = False) ‑> pandas.DataFrame-
Expand source code
def read_xml(input_path: str, sort: bool = True, warn: bool = False) -> pd.DataFrame: music_df = xml_parse(input_path, sort=sort, warn=warn) return music_df