Преглед на файлове

adding style(text, effect) function

tags/v0.2
Ben Kurtovic преди 13 години
родител
ревизия
235e790cbd
променени са 1 файла, в които са добавени 16 реда и са изтрити 9 реда
  1. +16
    -9
      gitup.py

+ 16
- 9
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)


Зареждане…
Отказ
Запис