Skip to content

Instantly share code, notes, and snippets.

@yanmhlv
Created August 16, 2013 09:52
Show Gist options
  • Save yanmhlv/6248619 to your computer and use it in GitHub Desktop.
Save yanmhlv/6248619 to your computer and use it in GitHub Desktop.
color output in terminal
class bcolors:
HEADER = '\033[95m'
OKBLUE = '\033[94m'
OKGREEN = '\033[92m'
WARNING = '\033[93m'
FAIL = '\033[91m'
ENDC = '\033[0m'
def disable(self):
self.HEADER = ''
self.OKBLUE = ''
self.OKGREEN = ''
self.WARNING = ''
self.FAIL = ''
self.ENDC = ''
#print bcolors.OKGREEN + 'Hello world' + bcolors.ENDC
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment