Member-only story
You Need To Use This Python Tool In Every Project
Welcome back! Python is an awesome programming language with a ton of capability, if you’re new to Python, check out the link below to learn more about it:
Let’s take a look at an amazing Python tool that you should use in every Python project you create, this specific tool is called Black, and it’s a code formatter for your Python code! Take a look at their GitHub page below to learn more about this project:
This specific tool allows us to format our Python code automatically, within our terminal, allowing us to focus on the contents within the Python project, if you want to install this package, we can use the following pip command:
pip install git+https://github.com/psf/black
Once installed you are good to go! All you have to do now is use the black command…