blob: 01574f778e52372e2c067b4ca277929f25dfc4dc [file] [log] [blame]
Gary Wu9abb61c2018-09-27 10:38:50 -07001'''
2Created on Aug 18, 2017
3
4@author: sw6830
5'''
6from robot.api import logger
7from Queue import Queue
8import uuid, time, json, threading,os, platform, subprocess,paramiko
9
10class xNFLibrary(object):
11
12 def __init__(self):
13 pass
14
15 def create_header_from_string(self, dictStr):
16 logger.info("Enter create_header_from_string: dictStr")
17 return dict(u.split("=") for u in dictStr.split(","))
18
19 def Generate_UUID(self):
20 """generate a uuid"""
21 return uuid.uuid4()
22
23if __name__ == '__main__':
24 lib = xNFLibrary()
25 time.sleep(100000)