Skip to main content

A more configurable Python code formatter

Project description

Cercis

Cercis /ˈsɜːrsɪs/ is a Python code formatter that is more configurable than Black (a popular Python code formatter).

Cercis is also the name of a deciduous tree that boasts vibrant pink to purple-hued flowers, which bloom in early spring.

This code repository is forked from and directly inspired by Black. The original license of Black is included in this repository (see LICENSE_ORIGINAL).

1. Motivations

While we like the idea of auto-formatting and code readability, we take issue with some style choices and the lack of configurability of the Black formatter. Therefore, Cercis aims at providing some configurability beyond Black's limited offering.

2. Installation and usage

2.1. Installation

Cercis can be installed by running pip install cercis. It requires Python 3.7+ to run. If you want to format Jupyter Notebooks, install with pip install "cercis[jupyter]".

2.2. Usage

2.2.1. Command line usage

To get started right away with sensible defaults:

cercis {source_file_or_directory}

You can run Cercis as a package if running it as a script doesn't work:

python -m cercis {source_file_or_directory}

The commands above reformat entire file(s) in place.

2.2.2. As pre-commit hook

To format Python files (.py), put the following into your .pre-commit-config.yaml file. Remember to replace <VERSION> with your version of this tool (such as v0.1.0):

- repo: https://github.com/jsh9/cercis
  rev: <VERSION>
  hooks:
    - id: cercis
      args: [--line-length=88]

To format Jupyter notebooks (.ipynb), put the following into your .pre-commit-config.yaml file:

- repo: https://github.com/jsh9/cercis
  rev: <VERSION>
  hooks:
    - id: cercis-jupyter
      args: [--line-length=88]

See pre-commit for more instructions. In particular, here is how to specify arguments in pre-commit config.

3. The code style

The code style in Cercis is largely consistent with the style of of Black.

The main difference is that Cercis provides several configurable options that Black doesn't. That's also our main motivation of creating Cercis.

Cercis offers the following configurable options:

The next section (How to configure Cercis) contains detailed instructions of how to configure these options.

3.1. Extra indentation at function definition

# Cercis's default style
def some_function(
        arg1_with_long_name: str,
        arg2_with_longer_name: int,
        arg3_with_longer_name: float,
        arg4_with_longer_name: bool,
) -> None:
    ...
# Black's style (not configurable)
def some_function(
    arg1_with_long_name: str,
    arg2_with_longer_name: int,
    arg3_with_longer_name: float,
    arg4_with_longer_name: bool,
) -> None:
    ...

We choose to indent an extra 4 spaces because it adds a clear visual separation between the function name and the argument list. Not adding extra indentation is also called out as wrong in the the official PEP8 style guide.

If you do not like this default, you can easily turn it off.

Details
Name --function-definition-extra-indent
Abbreviation -fdei
Default True
Command line usage cercis -fdei=False myScript.py
pyproject.toml usage function-definition-extra-indent = true under [tool.cercis]
pre-commit usage args: [--function-definition-extra-indent=False]

3.2. Single quote vs double quote

Both Cercis and Black default to using double quotes. But in Cercis you can specify using single quotes as the default style.

Details
Name --single-quote
Abbreviation -sq
Default False
Command line usage cercis -sq=True myScript.py
pyproject.toml usage single-quote = true under [tool.cercis]
pre-commit usage args: [--single-quote=False]

4. How to configure Cercis

4.1. Dynamically in the command line

Here are some examples:

  • cercis --single-quote=True myScript.py to format files to single quotes
  • cercis --function-definition-extra-indent=False myScript.py to format files without extra indentation at function definition
  • cercis --line-length=79 myScript.py to format files with a line length of 79 characters

4.2. In your project's pyproject.toml file

You can specify the options under the [tool.cercis] section of the file:

[tool.cercis]
line-length = 88
function-definition-extra-indent = true
single-quote = false

4.3. In your project's .pre-commit-config.yaml file

You can specify the options under the args section of your .pre-commit-config.yaml file.

For example:

repos:
  - repo: https://github.com/jsh9/cercis
    rev: 0.1.0
    hooks:
      - id: cercis
        args: [--function-definition-extra-indent=False, --ling-length=79]
  - repo: https://github.com/jsh9/cercis
    rev: 0.1.0
    hooks:
      - id: cercis-jupyter
        args: [--function-definition-extra-indent=False, --line-length=79]

4.4. Specify options in tox.ini

Currently, Cercis does not support a config section in tox.ini. Instead, you can specify the options in pyproject.toml.

Change Log

[0.1.1] - 2023-05-03

Added

  • A configurable option: single-quote, for formatting code into single quotes

Full changelog

[0.1.0] - 2023-04-30

This is the initial version that branches away from Black (commit: e712e4)

Changed

  • The default indentation within a function definition (when line wrap happens) is now 8 spaces. (Black's default is 4, which is not PEP8-compatible)
  • Updated README, because cercis now branches away from Black

Added

  • A configurable option (function-definition-extra-indent) is added instead of enforcing 8 spaces for everyone

Project details


Download files

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

Source Distribution

cercis-0.1.1.tar.gz (274.0 kB view details)

Uploaded Source

Built Distribution

cercis-0.1.1-py3-none-any.whl (165.0 kB view details)

Uploaded Python 3

File details

Details for the file cercis-0.1.1.tar.gz.

File metadata

  • Download URL: cercis-0.1.1.tar.gz
  • Upload date:
  • Size: 274.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for cercis-0.1.1.tar.gz
Algorithm Hash digest
SHA256 f564555e0f36fe20ad116424f7e3c92cfc9cccbe32f17776b3c6d9f6d6ada686
MD5 fdb7842b0de89705418f45df2492c9d1
BLAKE2b-256 94e2ce91a9736b56da0cbef6a3f2a4011ba4f99af2f5c02f8bfb652fea5ca9a4

See more details on using hashes here.

Provenance

File details

Details for the file cercis-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: cercis-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 165.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for cercis-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 be95fad6b97473bf62545ff89071d2df4e10fdd5774d169f24ecd2498db0d582
MD5 37297bbe572d10b6391d67907cfd4793
BLAKE2b-256 22f5c02859c01e197df3c6642a0834ce77c0b67dd840d49d6d8b6000c47abf3d

See more details on using hashes here.

Provenance

Supported by

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