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


Python colors.white方法代码示例

本文整理汇总了Python中core.colors.white方法的典型用法代码示例。如果您正苦于以下问题:Python colors.white方法的具体用法?Python colors.white怎么用?Python colors.white使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在core.colors的用法示例。


在下文中一共展示了colors.white方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: prompt

# 需要导入模块: from core import colors [as 别名]
# 或者: from core.colors import white [as 别名]
def prompt(default=None):
    # try assigning default editor, if fails, use default
    editor = os.environ.get('EDITOR', defaultEditor)
    # create a temporary file and open it
    with tempfile.NamedTemporaryFile(mode='r+') as tmpfile:
        if default:  # if prompt should have some predefined text
            tmpfile.write(default)
            tmpfile.flush()
        child_pid = os.fork()
        is_child = child_pid == 0
        if is_child:
            # opens the file in the editor
            try:
                os.execvp(editor, [editor, tmpfile.name])
            except FileNotFoundError:
                logger.error('You don\'t have either a default $EDITOR \
value defined nor \'nano\' text editor')
                logger.info('Execute %s`export EDITOR=/pat/to/your/editor` \
%sthen run XSStrike again.\n\n' % (yellow,white))
                exit(1)
        else:
            os.waitpid(child_pid, 0)  # wait till the editor gets closed
            tmpfile.seek(0)
            return tmpfile.read().strip()  # read the file 
开发者ID:s0md3v,项目名称:XSStrike,代码行数:26,代码来源:prompt.py

示例2: banner

# 需要导入模块: from core import colors [as 别名]
# 或者: from core.colors import white [as 别名]
def banner():
    print ('''
     %s⚡ %sBOLT%s  ⚡%s
    ''' % (yellow, white, yellow, end)) 
开发者ID:s0md3v,项目名称:Bolt,代码行数:6,代码来源:bolt.py

示例3: banner

# 需要导入模块: from core import colors [as 别名]
# 或者: from core.colors import white [as 别名]
def banner():
    newText = ''
    text = '''\n\t{ meta v0.1-beta }\n'''
    for char in text:
        if char != ' ':
            newText += (random.choice([green, white]) + char + end)
        else:
            newText += char
    print (newText) 
开发者ID:s0md3v,项目名称:meta,代码行数:11,代码来源:meta.py


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