From 68d662e689cd42687341c550fb6ebb74e6968d21 Mon Sep 17 00:00:00 2001 From: Walter Purcaro Date: Mon, 8 Sep 2014 00:29:57 +0200 Subject: module -> pyload --- pyload/cli/printer.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 pyload/cli/printer.py (limited to 'pyload/cli/printer.py') diff --git a/pyload/cli/printer.py b/pyload/cli/printer.py new file mode 100644 index 000000000..0b2f5a0e3 --- /dev/null +++ b/pyload/cli/printer.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- + +def blue(string): + return "\033[1;34m" + unicode(string) + "\033[0m" + +def green(string): + return "\033[1;32m" + unicode(string) + "\033[0m" + +def yellow(string): + return "\033[1;33m" + unicode(string) + "\033[0m" + +def red(string): + return "\033[1;31m" + unicode(string) + "\033[0m" + +def cyan(string): + return "\033[1;36m" + unicode(string) + "\033[0m" + +def mag(string): + return "\033[1;35m" + unicode(string) + "\033[0m" + +def white(string): + return "\033[1;37m" + unicode(string) + "\033[0m" + +def println(line, content): + print "\033[" + str(line) + ";0H\033[2K" + content -- cgit v1.2.3