summaryrefslogtreecommitdiffstats
path: root/robotframework-onap/eteutils/StringTemplater.py
diff options
context:
space:
mode:
Diffstat (limited to 'robotframework-onap/eteutils/StringTemplater.py')
-rw-r--r--robotframework-onap/eteutils/StringTemplater.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/robotframework-onap/eteutils/StringTemplater.py b/robotframework-onap/eteutils/StringTemplater.py
new file mode 100644
index 0000000..43d107e
--- /dev/null
+++ b/robotframework-onap/eteutils/StringTemplater.py
@@ -0,0 +1,9 @@
+import json
+from string import Template
+
+class StringTemplater:
+ """StringTemplater is common resource for templating with strings."""
+
+ def template_string(self, template, values):
+ """Template String takes in a string and its values and converts it using the string.Template class"""
+ return Template(template).substitute(values) \ No newline at end of file