From 235e790cbd4cdb67e6835117a3ee95275f22e516 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Tue, 7 Jun 2011 18:49:05 -0400 Subject: [PATCH] adding style(text, effect) function --- gitup.py | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/gitup.py b/gitup.py index 2386e74..0c6b166 100644 --- a/gitup.py +++ b/gitup.py @@ -20,15 +20,6 @@ __email__ = "ben.kurtovic@verizon.net" config_filename = os.path.join(os.path.expanduser("~"), ".gitup") -ansi = { # ANSI escape codes to make terminal output colorful - "reset": "\x1b[0m", - "bold": "\x1b[1m", - "red": "\x1b[1m\x1b[31m", - "green": "\x1b[1m\x1b[32m", - "yellow": "\x1b[1m\x1b[33m", - "blue": "\x1b[1m\x1b[34m", -} - def out(indent, msg): """Print a message at a given indentation level.""" width = 4 # amount to indent at each level @@ -39,6 +30,22 @@ def out(indent, msg): msg = re.sub("\s+", " ", msg) # collapse multiple spaces into one print spacing + msg +def style(text, effect): + """Give a text string a certain effect, such as boldness, or a color.""" + ansi = { # ANSI escape codes to make terminal output fancy + "reset": "\x1b[0m", + "bold": "\x1b[1m", + "red": "\x1b[1m\x1b[31m", + "green": "\x1b[1m\x1b[32m", + "yellow": "\x1b[1m\x1b[33m", + "blue": "\x1b[1m\x1b[34m", + } + + try: # pad text with effect, unless effect does not exist + return "{}{}{}".format(ansi[effect], text, ansi['reset']) + except KeyError: + return text + def exec_shell(command): """Execute a shell command and get the output.""" command = shlex.split(command)