src.lib.tpl = class Tpl(__builtin__.object)
    Tpl class
 
  Static methods defined here:
cancel(msg='', key='', **args)
Print message and stop propagation
:param str msg: text message
:param str key: message key for template
:param dict args: additional arguments
:raise TplError
:return: None
debug(msg='', key='', **args)
Debug log message
:param str msg: text message
:param str key: message key for template
:param dict args: additional arguments
:raise TplError
:return: None
error(msg='', key='', **args)
Error log message
:param str msg: text message
:param str key: message key for template
:param dict args: additional arguments
:raise TplError
:return: None
info(msg='', key='', clear=False, **args)
Info log message
:param str msg: text message
:param str key: message key for template
:param dict args: additional arguments
:param bool clear: clear prev line
:raise TplError
:return: None
line(msg='', key='', color='white', **args)
Stored colored line to variable
:param str msg: text message
:param str key: message key for template
:param str color: color
:param dict args: additional arguments
:raise TplError
:return: str
line_log(msg='', key='', status='info', write=True, **args)
Stored colored log line to variable
:param str msg: text message
:param str key: message key for template
:param str status: log status
:param bool write: write immediatelly
:param dict args: additional arguments
:raise TplError
:return: None
message(msg, args=None, color='white')
Simple colored message
:param str msg: text message
:param dict args: additional arguments
:param str color: color
:return: None
prompt(key='', msg=None, status='info', **kwargs)
Prompt message
:param str key: tpl message key
:param str msg: target message
:param str status: message status
:param dict kwargs: additional key arguments
:raise TplError
:return:str
warning(msg='', key='', **args)
Warning log message
:param str msg: text message
:param str key: message key for template
:param dict args: additional arguments
:raise TplError
:return: None

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)