Skip to main content

McCabe checker, plugin for flake8

Project description

Ned’s script to check McCabe complexity.

This module provides a plugin for flake8, the Python code checker.

Installation

You can install, upgrade, or uninstall mccabe with these commands:

$ pip install mccabe
$ pip install --upgrade mccabe
$ pip uninstall mccabe

Standalone script

The complexity checker can be used directly:

$ python -m mccabe --min 5 mccabe.py
("185:1: 'PathGraphingAstVisitor.visitIf'", 5)
("71:1: 'PathGraph.to_dot'", 5)
("245:1: 'McCabeChecker.run'", 5)
("283:1: 'main'", 7)
("203:1: 'PathGraphingAstVisitor.visitTryExcept'", 5)
("257:1: 'get_code_complexity'", 5)

Plugin for Flake8

When both flake8 2+ and mccabe are installed, the plugin is available in flake8:

$ flake8 --version
2.0 (pep8: 1.4.2, pyflakes: 0.6.1, mccabe: 0.2)

By default the plugin is disabled. Use the --max-complexity switch to enable it. It will emit a warning if the McCabe complexity of a function is higher than the provided value:

$ flake8 --max-complexity 10 coolproject
...
coolproject/mod.py:1204:1: C901 'CoolFactory.prepare' is too complex (14)

This feature is quite useful for detecting over-complex code. According to McCabe, anything that goes beyond 10 is too complex.

Flake8 has many features that mccabe does not provide. Flake8 allows users to ignore violations reported by plugins with # noqa. Read more about this in their documentation. To silence violations reported by mccabe, place your # noqa: C901 on the function definition line, where the error is reported for (possibly a decorator).

Changes

0.7.0 - 2021-01-23

  • Drop support for all versions of Python lower than 3.6

  • Add support for Python 3.8, 3.9, and 3.10

  • Fix option declaration for Flake8

0.6.1 - 2017-01-26

  • Fix signature for PathGraphingAstVisitor.default to match the signature for ASTVisitor

0.6.0 - 2017-01-23

  • Add support for Python 3.6

  • Fix handling for missing statement types

0.5.3 - 2016-12-14

  • Report actual column number of violation instead of the start of the line

0.5.2 - 2016-07-31

  • When opening files ourselves, make sure we always name the file variable

0.5.1 - 2016-07-28

  • Set default maximum complexity to -1 on the class itself

0.5.0 - 2016-05-30

  • PyCon 2016 PDX release

  • Add support for Flake8 3.0

0.4.0 - 2016-01-27

  • Stop testing on Python 3.2

  • Add support for async/await keywords on Python 3.5 from PEP 0492

0.3.1 - 2015-06-14

  • Include test_mccabe.py in releases.

  • Always coerce the max_complexity value from Flake8’s entry-point to an integer.

0.3 - 2014-12-17

  • Computation was wrong: the mccabe complexity starts at 1, not 2.

  • The max-complexity value is now inclusive. E.g.: if the value is 10 and the reported complexity is 10, then it passes.

  • Add tests.

0.2.1 - 2013-04-03

  • Do not require setuptools in setup.py. It works around an issue with pip and Python 3.

0.2 - 2013-02-22

  • Rename project to mccabe.

  • Provide flake8.extension setuptools entry point.

  • Read max-complexity from the configuration file.

  • Rename argument min_complexity to threshold.

0.1 - 2013-02-11

  • First release

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

mccabe-0.7.0.tar.gz (9.7 kB view details)

Uploaded Source

Built Distribution

mccabe-0.7.0-py2.py3-none-any.whl (7.3 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file mccabe-0.7.0.tar.gz.

File metadata

  • Download URL: mccabe-0.7.0.tar.gz
  • Upload date:
  • Size: 9.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.1

File hashes

Hashes for mccabe-0.7.0.tar.gz
Algorithm Hash digest
SHA256 348e0240c33b60bbdf4e523192ef919f28cb2c3d7d5c7794f74009290f236325
MD5 374ee2b9407546bb41d195e7436e5f62
BLAKE2b-256 e7ff0ffefdcac38932a54d2b5eed4e0ba8a408f215002cd178ad1df0f2806ff8

See more details on using hashes here.

Provenance

File details

Details for the file mccabe-0.7.0-py2.py3-none-any.whl.

File metadata

  • Download URL: mccabe-0.7.0-py2.py3-none-any.whl
  • Upload date:
  • Size: 7.3 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.1

File hashes

Hashes for mccabe-0.7.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 6c2d30ab6be0e4a46919781807b4f0d834ebdd6c6e3dca0bda5a15f863427b6e
MD5 9e5647aa3a016a0e27b50403efc5d8e7
BLAKE2b-256 271a1f68f9ba0c207934b35b86a8ca3aad8395a3d6dd7921c0686e23853ff5a9

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