read_yaml(file_path)

Read YAML file.

Parameters:
  • file_path (str) –

    Path to the YAML file.

Returns:
  • Dict( Dict ) –

    Read parameters.

newsclassifier\utils.py
23
24
25
26
27
28
29
30
31
32
33
34
35
def read_yaml(file_path: str) -> Dict:
    """Read YAML file.

    Args:
        file_path (str): Path to the YAML file.

    Returns:
        Dict: Read parameters.
    """
    logger.info("Reading yamlfile")
    with open(file_path, "r") as file:
        params = yaml.load(file, Loader=yaml.FullLoader)
    return params

write_yaml(data, filepath)

Write into YAML file.

Parameters:
  • data (DataFrame) –

    Data to be parsed into YAML

  • filepath (str) –

    Path of location to be stored at.

newsclassifier\utils.py
10
11
12
13
14
15
16
17
18
19
20
def write_yaml(data: pd.DataFrame, filepath: str) -> None:
    """Write into YAML file.

    Args:
        data (pd.DataFrame): Data to be parsed into YAML
        filepath (str): Path of location to be stored at.
    """
    logger.info("Writing yaml file.")
    os.makedirs(os.path.dirname(filepath), exist_ok=True)
    with open(filepath, "w") as file:
        yaml.dump(data, file, default_flow_style=False)