Source code for meqsilhouette.utils.comm_functions

from termcolor import colored
### Communication functions
[docs]def info(string): #t = "%d/%d/%d %d:%d:%d"%(time.localtime()[:6]) print(colored("\n>>> MEQSILHOUETTE INFO <<< : %s\n"%(string),'green'))
[docs]def warn(string): #t = "%d/%d/%d %d:%d:%d"%(time.localtime()[:6]) print(colored("\n>> MEQSILHOUETTE WARNING <<: %s\n"%(string),'yellow'))
[docs]def abort(string,exception=SystemExit): #t = "%d/%d/%d %d:%d:%d"%(time.localtime()[:6]) raise exception(colored("\n>> MEQSILHOUETTE ABORTING <<: %s\n"%(string),'red'))