Socket
Socket
Sign inDemoInstall

pycolors

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pycolors

Python module to ease the use of colors on programs that run on CLI


Maintainers
1

Module colors ~~~~~~~~~~~~~~

Python module to ease the use of colors on programs that run on CLI.
Works fine on Linux and any Operating System running BaSH or compatibles.
If the shell's not color compatible, he'll get the raw string.
The module have predefined some basic colors, but you can use any color,
if you know the color code.


Usage example
-------------

    >>> from colors import Color
    >>> yellow = Color('1;33')
    >>> print yellow('Hello World')
    Hello World
    
    >>> from colors import red
    >>> print red('Ola Mundo')


Working with this module as an optional dependency
--------------------------------------------------

If you don't want to force the users to have PyColors installed
you can make the use of the colors module optional. For example: ::

    # trying to use colors
    try:
        from colors import light_blue, light_red, red, white
    except:
        light_blue = light_red = red = white = lambda(x): str(x)

With this, if the user don't have the colors module, he'll get the
raw strings normally.

:copyright: 2009 Rafael Goncalves Martins.
:license: BSD, see LICENSE for more details.

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc