当前位置: 首页>>代码示例>>Python>>正文


Python Utils.to_unicode方法代码示例

本文整理汇总了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)
开发者ID:mwrlabs,项目名称:needle,代码行数:6,代码来源:printer.py

示例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)
开发者ID:mwrlabs,项目名称:needle,代码行数:6,代码来源:printer.py

示例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)
开发者ID:mwrlabs,项目名称:needle,代码行数:6,代码来源:printer.py

示例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)
开发者ID:mwrlabs,项目名称:needle,代码行数:6,代码来源:printer.py

示例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)
开发者ID:mwrlabs,项目名称:needle,代码行数:7,代码来源:printer.py

示例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)
开发者ID:mwrlabs,项目名称:needle,代码行数:7,代码来源:printer.py


注:本文中的utils.Utils.to_unicode方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。