Skip to main content

A Python package for printing coloured text to the terminal.

Project description

colourout

A Python package for printing coloured text to the terminal.

Installation

Install this package using pip:

pip install colourout

API

The colourout package provides two functions, and an Enum for the available colours.

printc

The printc utilises the builtin print function to print coloured text to the terminal.

from colourout import printc

printc("Hello, World!", styles=["BLUE", "UNDERLINE"])
>>> \033[34m\033[4mHello, World!\033[0m

eprintc

The eprintc function is the same as printc, but prints to stderr instead of stdout.

from colourout import eprintc

eprintc("Hello, World!", styles=["RED", "BOLD"])
>>> \033[31m\033[1mHello, World!\033[0m

Styles

The Styles enum provides a list of available styles.

from colourout import Styles, printc

printc(
    "Hello, World!",
    styles=[Styles.BLUE, Styles.UNDERLINE],
)

>>> \033[34m\033[4mHello, World!\033[0m

Contributing

Fork the repository and clone it locally.

Make any changes you want and then submit a pull request.

Ensure all tests are passing and that you have added tests for any new functionality.

Run testing, formatting, and linting by using nox.

You can run individual sessions by using the -s flag with nox. For example:

nox -s test
nox -s lint

Code is formatted and linted upon commit using the pre-commit tool.

Make sure to install the pre-commit config using pre-commit install once you have installed the requirements-dev.txt dependencies.

You can check that everything is passing by running pre-commit after git add-ing your files to a commit.

NOTE: Tests are not run with pre-commit due to performance issues, please ensure to run nox to validate tests.

Authors

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

colourout-0.1.1.tar.gz (4.1 kB view hashes)

Uploaded Source

Built Distribution

colourout-0.1.1-py3-none-any.whl (5.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page