Member-only story

You Need To Import This To Every Python Project

Manpreet Singh
3 min readMar 16, 2022

--

Welcome back! Python is an awesome programming language that I use all of the time, if you’re new to Python, check out the link below to learn more about it:

So, let’s talk about an amazing Python package, this package is so important that I would probably recommend importing it inside of every Python project you develop, what is this package? This package is Rich, and it’s a Python library that allows you to do rich text formatting in the terminal! You can check out their GitHub page below:

Essentially, this package allows you to add color and styling to your terminal output, this allows your CLI projects to stand out! Here is an example of this packages capability:

If you would like to install this package, you can use the following pip command:

python -m pip install rich

At this point, you can run their sample command to check out an example of this package:

python -m rich

Now it’s time for the fun part, if you want to add this capability to your project, all you have to do is utilize the following import command:

from rich import print

This is the easiest way to get started with this project, here is an example script from their GitHub page:

from rich import printprint("Hello, [bold magenta]World[/bold magenta]!", ":vampire:", locals())

This is the output of this project:

--

--

Manpreet Singh
Manpreet Singh

Responses (1)