0 purchases
rgbpy 0.0.1
RGBpy
RGBpy it is python text-style ✅ not python textile! 🤔 it actually print your text on terminal in different kind of colors, including logging.
Simple use of rgbpy
First we recommend creating a virtual environment python -m venv venv and then activate it source venv/bin/activate
Once that finish now install the library using
pip install rgbpy
Wait for the installation to finish, basically the library was uploaded using sdist (Source Distribution) and bdist_wheel (Built Distribution).
To print text with color using python print, instead of using print function, use any of the following functions (purple, blue, cyan, green, yellow, red, normal, bold, underline, log_style)
>>> from rgbpy import (purple, blue, cyan, green, yellow, red, normal, bold, underline)
>>> purple('I am purple in color')
>>> blue('I am blue in color')
>>> cyan('I am cyan in color')
>>> green('I am green in color')
>>> yellow('I am yellow in color')
>>> red('I am red in color')
>>> normal('I am a normal text')
>>> bold('I make text bold')
>>> underline('I underline text')
To print logging text with color:
>>> import logging
>>> from rgbpy import log_style
>>> FORMATTER = '[+] [%(asctime)s] [%(levelname)s] %(message)s'
>>> logging.basicConfig(format=FORMATTER)
>>> LOGGER = logging.getLogger(__name__)
>>> LOGGER.setLevel(logging.DEBUG)
>>> log_style('I am info logger')
>>> log_style('I am yellow logger', col='yellow')
>>> log_style('I am error logger', log='error')
See more documentations here!
Useful links
Documentation: https://rgbpy.readthedocs.io
Repository: https://github.com/usmanmusa1920/rgbpy
PYPI Release: https://pypi.org/project/rgbpy
Pull requests are welcome
Change Log
0.0.1 (04/november/2023)
0.0.1 Release
This is the first release!
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.