
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
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
Python module to ease the use of colors on programs that run on CLI
We found that pycolors demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.