Why Doesn’t Every Coder Use This Python Package?

Manpreet Singh
2 min readAug 3, 2022

Welcome back! Python is an awesome programming language, if you’re new to this language, check out the link below to learn more about it:

Now, there is an awesome Python package that every developer should use, this is the black package, which is a Python code formatter! Here is a link to their GitHub repository:

What does this package do? It will essentially take your original Python file, format it, and it will output a cleaned up/formatted version of your Python script! If you want to install this package, you can use the following pip command:

pip install black

Once installed, we can go ahead and you use black command to begin formatting your Python files, here is a sample command of this command:

black {source_file_or_directory}

--

--