From f7a7af979d89d01928c252e75a57844f710ab928 Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Sat, 10 Sep 2022 10:06:17 +0200 Subject: Start implementating platform files --- esds/helpers/platform.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 esds/helpers/platform.py (limited to 'esds') diff --git a/esds/helpers/platform.py b/esds/helpers/platform.py new file mode 100644 index 0000000..eee2139 --- /dev/null +++ b/esds/helpers/platform.py @@ -0,0 +1,10 @@ + +import yaml + +class YAMLPlatformFile: + + def __init__(self, file_path): + self.file_path=file_path + with open(file_path) as f: + self.platform = yaml.load(f, Loader=yaml.FullLoader) + print(self.platform) \ No newline at end of file -- cgit v1.2.3