colorama
colorama copied to clipboard
How about a simple replacing/adding a color on a string interface
Interface:
s = "some special text"
colorama.replace("special", Fore.RED, s)
In this case, it will replace "special"
with Fore.RED + "special" + Fore.RESET
.