Skip to main content

Black-compliant formatter/rewrapper for Python comments.

Project description

CoBlack

CoBlack is a Black-compliant formatter/rewrapper for Python comments.

Example code

Before:

def care_for(self, favorite_plant):
    self.sing_a_lullaby_to(favorite_plant)  # This should help them grow. Note that this comment is too long to fit on one line, given the recommended line length.
    favorite_plant.water(100 * mL)  # Prevent dehydration.

After:

def care_for(self, favorite_plant):
    self.sing_a_lullaby_to(favorite_plant)  # This should help them grow. Note that this
    #                                       # comment is too long to fit on one line,
    #                                       # given the recommended line length.
    favorite_plant.water(100 * mL)  # Prevent dehydration.

The extra #'s at the beginning of each line are necessary to be Black-compliant:
If they were not there, Black would pull the comments to the start of the line, destroying the alignment, and making the code look messier. (Compare to how the naive way of wrapping comments looks).


Installation

$ pip install coblack

This will get you the latest release on PyPI

(Upgrade an existing installation of CoBlack by adding the --upgrade/-U flag).


Usage

In your terminal:

$ coblack my_file.py

This wraps & fills out multiline comments, and passes the result through black.
The file is edited in-place.

Get info on additional options (such as eg -l to set the line length) with coblack -h.


IDE integration

For PyCharm, create a new External Tool, as follows:

Screenshot of External Tool UI in PyCharm. Gist: `coblack "$FilePath$"`

Then assign a keyboard shortcut to this tool.
This enables you to format your files quickly and often during coding sessions.

In VS Code, you'd create a new Task, in a similar fashion.


Python API

import coblack

coblack.format_file("path/to/my_file.py")  # You can also pass a `pathlib.Path`.

Appendix

Naive way of wrapping comments

def care_for(self, favorite_plant):
    self.sing_a_lullaby_to(favorite_plant)  # This should help them grow. Note that this
    # comment is too long to fit on one line, given the recommended line length.
    favorite_plant.water(100 * mL)  # Prevent dehydration.

(👆 back to top of ReadMe).


Other comment styles

On own line, before code:

def care_for(self, favorite_plant):

    # This should help them grow. Note that this comment is too long to fit on one line,
    # given the recommended line length.
    self.sing_a_lullaby_to(favorite_plant)

    # Prevent dehydration.
    favorite_plant.water(100 * mL)

On own line, after code:

def care_for(self, favorite_plant):

    self.sing_a_lullaby_to(favorite_plant)
    # This should help them grow. Note that this comment is too long to fit on one line,
    # given the recommended line length.

    favorite_plant.water(100 * mL)
    # Prevent dehydration.

These styles don't need CoBlack; a vanilla rewrapper like any of the following will do:

  • The Wrap to Column plugin for PyCharm;
  • The Rewrap extension for VS Code;
  • The "Wrap Paragraph at Ruler" command in Sublime Text (Alt-Q or Alt-⌘-Q) ;
  • The fill-paragraph command in Emacs; or
  • The gq operator in Vim.

Project details


Release history Release notifications | RSS feed

This version

0.2

Download files

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

Source Distribution

coblack-0.2.tar.gz (87.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

coblack-0.2-py3-none-any.whl (9.4 kB view details)

Uploaded Python 3

File details

Details for the file coblack-0.2.tar.gz.

File metadata

  • Download URL: coblack-0.2.tar.gz
  • Upload date:
  • Size: 87.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0.post20200518 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.3

File hashes

Hashes for coblack-0.2.tar.gz
Algorithm Hash digest
SHA256 c29ebec8d1ee9d681904d7262b158211ce6b991a7f2a0c25a181d98da1948315
MD5 c8fc028088596b68e35966724eccdb7c
BLAKE2b-256 90283f1ae434f8fb866a38e71acbf522f3f2893b06e3570887d751b0d19994e2

See more details on using hashes here.

File details

Details for the file coblack-0.2-py3-none-any.whl.

File metadata

  • Download URL: coblack-0.2-py3-none-any.whl
  • Upload date:
  • Size: 9.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0.post20200518 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.3

File hashes

Hashes for coblack-0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 c294b902fc7e849719feec747bfa379602128c335e8872f5409f9ee7c96638ff
MD5 e7d63fcac6e5f13e572b85295a4a3816
BLAKE2b-256 df7c799cab316a56269f75991086af58010cd1b11860848a16214056ead8e63c

See more details on using hashes here.

Supported by

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