Member-only story
Python packages to make your code look cooler
Welcome back! Python is an awesome programming language with a ton of capability, with that capability brings alot of customizability as well, so let’s talk about some of the best packages to make your Python code look cooler! Now, these packages essentially change the colors within the terminal (once the code is ran), so anytime you develop a CLI tool, you may find these packages super necessary.
Rich
First up we have Rich, a very cool Python package that allows you to add color/style to your terminal applications! To install this package, use the following line:
pip install rich
This package is super cool since it allows you to customize your terminal / command prompt applications, take a look at the following terminal application from their GitHub:
If you want to learn more about this package, check out the link below: