本文整理汇总了Python中utils.Utils.to_unicode方法的典型用法代码示例。如果您正苦于以下问题:Python Utils.to_unicode方法的具体用法?Python Utils.to_unicode怎么用?Python Utils.to_unicode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类utils.Utils
的用法示例。
在下文中一共展示了Utils.to_unicode方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: error
# 需要导入模块: from utils import Utils [as 别名]
# 或者: from utils.Utils import to_unicode [as 别名]
def error(self, msg):
"""Formats and presents errors."""
msg = '%s[!] %s%s' % (Colors.R, Utils.to_unicode(msg), Colors.N)
print(msg)
示例2: warning
# 需要导入模块: from utils import Utils [as 别名]
# 或者: from utils.Utils import to_unicode [as 别名]
def warning(self, msg):
"""Formats and presents warnings."""
msg = '%s[?] %s%s' % (Colors.O, Utils.to_unicode(msg), Colors.N,)
print(msg)
示例3: notify
# 需要导入模块: from utils import Utils [as 别名]
# 或者: from utils.Utils import to_unicode [as 别名]
def notify(self, msg):
"""Formats and presents important output."""
msg = '%s[+]%s %s' % (Colors.G, Colors.N, Utils.to_unicode(msg))
print(msg)
示例4: info
# 需要导入模块: from utils import Utils [as 别名]
# 或者: from utils.Utils import to_unicode [as 别名]
def info(self, msg):
"""Formats and presents normal output."""
msg = '%s[*]%s %s' % (Colors.B, Colors.N, Utils.to_unicode(msg))
print(msg)
示例5: verbose
# 需要导入模块: from utils import Utils [as 别名]
# 或者: from utils.Utils import to_unicode [as 别名]
def verbose(self, msg):
"""Formats and presents output if in verbose mode."""
if self.is_verbose:
msg = '%s[V]%s %s' % (Colors.C, Colors.N, Utils.to_unicode(msg))
print(msg)
示例6: debug
# 需要导入模块: from utils import Utils [as 别名]
# 或者: from utils.Utils import to_unicode [as 别名]
def debug(self, msg):
"""Formats and presents output if in debug mode (very verbose)."""
if self.is_debug:
msg = '%s[D]%s %s' % (Colors.O, Colors.N, Utils.to_unicode(msg))
print(msg)