termcolor-1.1.0/000755 001751 001751 00000000000 11513635075 014351 5ustar00pitmanpitman000000 000000 termcolor-1.1.0/CHANGES.rst000644 001751 001751 00000001101 11513634776 016153 0ustar00pitmanpitman000000 000000 1.1.0 (13.01.2011) ------------------ - Added cprint function. 1.0.1 (13.01.2011) ------------------ - Updated README.rst. 1.0.0 (13.01.2011) ------------------ - Changed license to MIT. - Updated copyright. - Refactored source code. 0.2 (07.09.2010) ---------------- - Added support of Python 3.x. 0.1.2 (04.06.2009) ------------------ - Fixed bold characters. (Thanks Tibor Fekete) 0.1.1 (05.03.2009) ------------------ - Some refactoring. - Updated copyright. - Fixed reset colors. - Updated documentation. 0.1 (09.06.2008) ---------------- - Initial release. termcolor-1.1.0/COPYING.txt000644 001751 001751 00000002061 11513611644 016215 0ustar00pitmanpitman000000 000000 Copyright (c) 2008-2011 Volvox Development Team Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. termcolor-1.1.0/README.rst000644 001751 001751 00000003554 11513634454 016047 0ustar00pitmanpitman000000 000000 Example ======= :: import sys from termcolor import colored, cprint text = colored('Hello, World!', 'red', attrs=['reverse', 'blink']) print(text) cprint('Hello, World!', 'green', 'on_red') print_red_on_cyan = lambda x: cprint(x, 'red', 'on_cyan') print_red_on_cyan('Hello, World!') print_red_on_cyan('Hello, Universe!') for i in range(10): cprint(i, 'magenta', end=' ') cprint("Attention!", 'red', attrs=['bold'], file=sys.stderr) Text Properties =============== Text colors: - grey - red - green - yellow - blue - magenta - cyan - white Text highlights: - on_grey - on_red - on_green - on_yellow - on_blue - on_magenta - on_cyan - on_white Attributes: - bold - dark - underline - blink - reverse - concealed Terminal properties =================== ============ ======= ==== ========= ========== ======= ========= Terminal bold dark underline blink reverse concealed ------------ ------- ---- --------- ---------- ------- --------- xterm yes no yes bold yes yes linux yes yes bold yes yes no rxvt yes no yes bold/black yes no dtterm yes yes yes reverse yes yes teraterm reverse no yes rev/red yes no aixterm normal no yes no yes yes PuTTY color no yes no yes no Windows no no no no yes no Cygwin SSH yes no color color color yes Mac Terminal yes no yes yes yes yes ============ ======= ==== ========= ========== ======= ========= termcolor-1.1.0/setup.py000755 001751 001751 00000004210 11513612611 016052 0ustar00pitmanpitman000000 000000 #!/usr/bin/env python # coding: utf-8 # Copyright (c) 2008-2011 Volvox Development Team # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. # # Author: Konstantin Lepa import os from distutils.core import setup prjdir = os.path.dirname(__file__) def read(filename): return open(os.path.join(prjdir, filename)).read() LONG_DESC = read('README.rst') + '\nCHANGES\n=======\n\n' + read('CHANGES.rst') from termcolor import VERSION setup(name='termcolor', version='.'.join([str(v) for v in VERSION]), description='ANSII Color formatting for output in terminal.', long_description=LONG_DESC, author='Konstantin Lepa', license='MIT', author_email='konstantin.lepa@gmail.com', url='http://pypi.python.org/pypi/termcolor', py_modules=['termcolor'], classifiers=[ 'Development Status :: 5 - Production/Stable', 'Environment :: Console', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Terminals' ] ) termcolor-1.1.0/termcolor.py000644 001751 001751 00000011664 11513634676 016747 0ustar00pitmanpitman000000 000000 # coding: utf-8 # Copyright (c) 2008-2011 Volvox Development Team # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. # # Author: Konstantin Lepa """ANSII Color formatting for output in terminal.""" from __future__ import print_function import os __ALL__ = [ 'colored', 'cprint' ] VERSION = (1, 1, 0) ATTRIBUTES = dict( list(zip([ 'bold', 'dark', '', 'underline', 'blink', '', 'reverse', 'concealed' ], list(range(1, 9)) )) ) del ATTRIBUTES[''] HIGHLIGHTS = dict( list(zip([ 'on_grey', 'on_red', 'on_green', 'on_yellow', 'on_blue', 'on_magenta', 'on_cyan', 'on_white' ], list(range(40, 48)) )) ) COLORS = dict( list(zip([ 'grey', 'red', 'green', 'yellow', 'blue', 'magenta', 'cyan', 'white', ], list(range(30, 38)) )) ) RESET = '\033[0m' def colored(text, color=None, on_color=None, attrs=None): """Colorize text. Available text colors: red, green, yellow, blue, magenta, cyan, white. Available text highlights: on_red, on_green, on_yellow, on_blue, on_magenta, on_cyan, on_white. Available attributes: bold, dark, underline, blink, reverse, concealed. Example: colored('Hello, World!', 'red', 'on_grey', ['blue', 'blink']) colored('Hello, World!', 'green') """ if os.getenv('ANSI_COLORS_DISABLED') is None: fmt_str = '\033[%dm%s' if color is not None: text = fmt_str % (COLORS[color], text) if on_color is not None: text = fmt_str % (HIGHLIGHTS[on_color], text) if attrs is not None: for attr in attrs: text = fmt_str % (ATTRIBUTES[attr], text) text += RESET return text def cprint(text, color=None, on_color=None, attrs=None, **kwargs): """Print colorize text. It accepts arguments of print function. """ print((colored(text, color, on_color, attrs)), **kwargs) if __name__ == '__main__': print('Current terminal type: %s' % os.getenv('TERM')) print('Test basic colors:') cprint('Grey color', 'grey') cprint('Red color', 'red') cprint('Green color', 'green') cprint('Yellow color', 'yellow') cprint('Blue color', 'blue') cprint('Magenta color', 'magenta') cprint('Cyan color', 'cyan') cprint('White color', 'white') print(('-' * 78)) print('Test highlights:') cprint('On grey color', on_color='on_grey') cprint('On red color', on_color='on_red') cprint('On green color', on_color='on_green') cprint('On yellow color', on_color='on_yellow') cprint('On blue color', on_color='on_blue') cprint('On magenta color', on_color='on_magenta') cprint('On cyan color', on_color='on_cyan') cprint('On white color', color='grey', on_color='on_white') print('-' * 78) print('Test attributes:') cprint('Bold grey color', 'grey', attrs=['bold']) cprint('Dark red color', 'red', attrs=['dark']) cprint('Underline green color', 'green', attrs=['underline']) cprint('Blink yellow color', 'yellow', attrs=['blink']) cprint('Reversed blue color', 'blue', attrs=['reverse']) cprint('Concealed Magenta color', 'magenta', attrs=['concealed']) cprint('Bold underline reverse cyan color', 'cyan', attrs=['bold', 'underline', 'reverse']) cprint('Dark blink concealed white color', 'white', attrs=['dark', 'blink', 'concealed']) print(('-' * 78)) print('Test mixing:') cprint('Underline red on grey color', 'red', 'on_grey', ['underline']) cprint('Reversed green on red color', 'green', 'on_red', ['reverse']) termcolor-1.1.0/PKG-INFO000644 001751 001751 00000007635 11513635075 015461 0ustar00pitmanpitman000000 000000 Metadata-Version: 1.0 Name: termcolor Version: 1.1.0 Summary: ANSII Color formatting for output in terminal. Home-page: http://pypi.python.org/pypi/termcolor Author: Konstantin Lepa Author-email: konstantin.lepa@gmail.com License: MIT Description: Example ======= :: import sys from termcolor import colored, cprint text = colored('Hello, World!', 'red', attrs=['reverse', 'blink']) print(text) cprint('Hello, World!', 'green', 'on_red') print_red_on_cyan = lambda x: cprint(x, 'red', 'on_cyan') print_red_on_cyan('Hello, World!') print_red_on_cyan('Hello, Universe!') for i in range(10): cprint(i, 'magenta', end=' ') cprint("Attention!", 'red', attrs=['bold'], file=sys.stderr) Text Properties =============== Text colors: - grey - red - green - yellow - blue - magenta - cyan - white Text highlights: - on_grey - on_red - on_green - on_yellow - on_blue - on_magenta - on_cyan - on_white Attributes: - bold - dark - underline - blink - reverse - concealed Terminal properties =================== ============ ======= ==== ========= ========== ======= ========= Terminal bold dark underline blink reverse concealed ------------ ------- ---- --------- ---------- ------- --------- xterm yes no yes bold yes yes linux yes yes bold yes yes no rxvt yes no yes bold/black yes no dtterm yes yes yes reverse yes yes teraterm reverse no yes rev/red yes no aixterm normal no yes no yes yes PuTTY color no yes no yes no Windows no no no no yes no Cygwin SSH yes no color color color yes Mac Terminal yes no yes yes yes yes ============ ======= ==== ========= ========== ======= ========= CHANGES ======= 1.1.0 (13.01.2011) ------------------ - Added cprint function. 1.0.1 (13.01.2011) ------------------ - Updated README.rst. 1.0.0 (13.01.2011) ------------------ - Changed license to MIT. - Updated copyright. - Refactored source code. 0.2 (07.09.2010) ---------------- - Added support of Python 3.x. 0.1.2 (04.06.2009) ------------------ - Fixed bold characters. (Thanks Tibor Fekete) 0.1.1 (05.03.2009) ------------------ - Some refactoring. - Updated copyright. - Fixed reset colors. - Updated documentation. 0.1 (09.06.2008) ---------------- - Initial release. Platform: UNKNOWN Classifier: Development Status :: 5 - Production/Stable Classifier: Environment :: Console Classifier: Intended Audience :: Developers Classifier: License :: OSI Approved :: MIT License Classifier: Operating System :: OS Independent Classifier: Programming Language :: Python Classifier: Topic :: Terminals