summaryrefslogtreecommitdiffstats
path: root/dovetail/api/app/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'dovetail/api/app/utils.py')
-rw-r--r--dovetail/api/app/utils.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/dovetail/api/app/utils.py b/dovetail/api/app/utils.py
new file mode 100644
index 00000000..9f35ee03
--- /dev/null
+++ b/dovetail/api/app/utils.py
@@ -0,0 +1,24 @@
+import json
+import os
+
+
+class Utils(object):
+
+ @staticmethod
+ def write_env_file(envs, file_path):
+ file_dir = os.path.dirname(file_path)
+ if not os.path.exists(file_dir):
+ os.makedirs(file_dir)
+ with open(file_path, "w") as f:
+ for key, value in envs.items():
+ f.write("export {}={}\n".format(key, value))
+ return True
+
+ @staticmethod
+ def write_yaml_file(data, file_path):
+ file_dir = os.path.dirname(file_path)
+ if not os.path.exists(file_dir):
+ os.makedirs(file_dir)
+ with open(file_path, "w") as f:
+ f.write(json.dumps(data) + '\n')
+ return True