aboutsummaryrefslogtreecommitdiffstats
path: root/osdf/utils/interfaces.py
diff options
context:
space:
mode:
Diffstat (limited to 'osdf/utils/interfaces.py')
-rw-r--r--osdf/utils/interfaces.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/osdf/utils/interfaces.py b/osdf/utils/interfaces.py
index 7a0e3a9..a869d6d 100644
--- a/osdf/utils/interfaces.py
+++ b/osdf/utils/interfaces.py
@@ -16,7 +16,9 @@
# -------------------------------------------------------------------------
#
+import json
import requests
+import yaml
from osdf.config.base import osdf_config, creds_prefixes
from osdf.logging.osdf_logging import MH, debug_log
@@ -35,6 +37,18 @@ def get_rest_client(request_json, service):
return RestClient(url=callback_url, userid=c_userid, passwd=c_passwd)
+def json_from_file(file_name):
+ """Read a policy from a file"""
+ with open(file_name) as fid:
+ return json.load(fid)
+
+
+def yaml_from_file(file_name):
+ """Read a policy from a file"""
+ with open(file_name) as fid:
+ return yaml.load(fid)
+
+
class RestClient(object):
"""Simple REST Client that supports get/post and basic auth"""