Posts with #terminal tag

Colored Output in Console with Python

Playing around with ANSI in a color capable terminal. #!/usr/bin/env python import sys BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE = range(8) #following from Python cookbook, #475186 def...