1
0
mirror of https://github.com/netbox-community/netbox-docker.git synced 2025-04-18 22:24:03 +03:00
2021-02-08 18:24:29 +01:00

13 lines
256 B
Python

from pathlib import Path
from ruamel.yaml import YAML
def load_yaml(yaml_file: str):
yf = Path(yaml_file)
if not yf.is_file():
return None
with yf.open("r") as stream:
yaml = YAML(typ="safe")
return yaml.load(stream)