-
-
Save imranity/7618e5640fc68cb26259 to your computer and use it in GitHub Desktop.
A python library of constants and utility functions for using ANSI terminal escapes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
A python library of constants and utility functions for using ANSI terminal escapes. | |
Example usage: | |
>>> import escapes as e | |
>>> print e.FORECOLOUR(e.RED) + "this is red" + e.UNFORMAT | |
""" | |
ESC = "\033" # escape character for terminal | |
CSI = ESC + "[" # Control Sequence Initiator | |
CLEAR = CSI + "H" + CSI + "2J" # Clears screen. Returns cursor to (1,1). | |
CLEAR_LINE = CSI + "2K" | |
# Cursor | |
SAVE_CURSOR = CSI + "s" | |
LOAD_CURSOR = CSI + "u" | |
TYPE_CURSOR = CSI + "6n" # Writes CSI <row> ";" <column> "R" to stdin | |
SET_CURSOR = lambda x,y: CSI + str(y) + ";" + str(x) + "H" # Sets cursor to (column, row) | |
CURSOR_UP = CSI + "A" | |
CURSOR_DOWN = CSI + "B" | |
CURSOR_RIGHT = CSI + "C" | |
CURSOR_LEFT = CSI + "D" | |
SCROLL_UP = CSI + "S" | |
SCROLL_DOWN = CSI + "D" | |
# Formatting | |
BOLD = CSI + "1m" | |
UNFORMAT = CSI + "0m" | |
FORECOLOUR = lambda x: CSI + "3" + str(x) + "m" | |
BACKCOLOUR = lambda x: CSI + "4" + str(x) + "m" | |
INVERTCOLOURS = CSI + "7m" | |
BLACK = "0" | |
RED = "1" | |
GREEN = "2" | |
YELLOW = "3" | |
BLUE = "4" | |
PURPLE = "5" | |
CYAN = "6" | |
WHITE = "7" | |
DEFAULT_COLOUR = "9" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment