diff options
author | neodarz <neodarz@neodarz.net> | 2019-05-25 23:33:13 +0200 |
---|---|---|
committer | neodarz <neodarz@neodarz.net> | 2019-05-25 23:33:13 +0200 |
commit | a8e56413815123b4bb10f3ddd597f42d11c8ad46 (patch) | |
tree | adb03287655abeff06032028768ea82f8acafa8a /utils/utils.py | |
parent | cba15003ea9e0df9ea81206e8e425f16f875bb0b (diff) | |
download | my_new_personal_website-a8e56413815123b4bb10f3ddd597f42d11c8ad46.tar.xz my_new_personal_website-a8e56413815123b4bb10f3ddd597f42d11c8ad46.zip |
Move init_colorama function to external file
Diffstat (limited to 'utils/utils.py')
-rw-r--r-- | utils/utils.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/utils/utils.py b/utils/utils.py new file mode 100644 index 00000000..a76beb5d --- /dev/null +++ b/utils/utils.py @@ -0,0 +1,23 @@ +#!/bin/python3 + +from contextlib import contextmanager +import colorama + + +@contextmanager +def init_colorama(): + """Set global foreground modifying ANSI codes. + + BLACK, BLUE, CYAN, GREEN, MAGENTA, RED, WHITE, YELLOW, and RESET. + + """ + + # pylint: disable=exec-used,invalid-name + + colorama.init() + for color, ansi in colorama.Fore.__dict__.items(): + exec("global {0}; {0} = '{1}'".format(color, ansi)) + yield + for color in colorama.Fore.__dict__: + exec("global {0}; {0} = ''".format(color)) + colorama.deinit() |