AmmarFahmy
adding all files
105b369
from pathlib import Path
from typing import Optional, Dict, Any
from phi.utils.log import logger
def read_yaml_file(file_path: Optional[Path]) -> Optional[Dict[str, Any]]:
if file_path is not None and file_path.exists() and file_path.is_file():
import yaml
logger.debug(f"Reading {file_path}")
data_from_file = yaml.safe_load(file_path.read_text())
if data_from_file is not None and isinstance(data_from_file, dict):
return data_from_file
else:
logger.error(f"Invalid file: {file_path}")
return None
def write_yaml_file(file_path: Optional[Path], data: Optional[Dict[str, Any]], **kwargs) -> None:
if file_path is not None and data is not None:
import yaml
logger.debug(f"Writing {file_path}")
file_path.write_text(yaml.safe_dump(data, **kwargs))