コード例 #1
0
ファイル: color.py プロジェクト: ThePenguin1140/jabbapylib
def bold(text, color='white'):
    return colored(text, color, attrs=['bold'])
コード例 #2
0
ファイル: color.py プロジェクト: the7day/jabbapylib
def bold(text, color='white'):
    return colored(text, color, attrs=['bold'])
コード例 #3
0
ファイル: color.py プロジェクト: ThePenguin1140/jabbapylib
def color(text, color, attrs=[]):
    """Produce a colored text for the terminal."""
    return colored(text, color, attrs=attrs)
コード例 #4
0
ファイル: color.py プロジェクト: the7day/jabbapylib
def color(text, color, attrs=[]):
    """Produce a colored text for the terminal."""
    return colored(text, color, attrs=attrs)