mirror of
https://github.com/Telecominfraproject/oopt-gnpy.git
synced 2025-11-01 10:38:10 +00:00
16 lines
282 B
Python
16 lines
282 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
'''
|
|
gnpy.core.ansi_escapes
|
|
======================
|
|
|
|
A random subset of ANSI terminal escape codes for colored messages
|
|
'''
|
|
|
|
red = '\x1b[1;31;40m'
|
|
blue = '\x1b[1;34;40m'
|
|
cyan = '\x1b[1;36;40m'
|
|
yellow = '\x1b[1;33;40m'
|
|
reset = '\x1b[0m'
|