소스 검색

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)


불러오는 중...
취소
저장