Skip to main content

Run any Python code quality tool on a Jupyter Notebook!

Project description

https://github.com/MarcoGorelli/nbQA/raw/master/assets/logo.png

nbQA

https://dev.azure.com/megorelli/megorelli/_apis/build/status/MarcoGorelli.nbQA?branchName=master https://img.shields.io/azure-devops/coverage/megorelli/megorelli/1/master.svg https://badge.fury.io/py/nbqa.svg https://readthedocs.org/projects/nbqa/badge/?version=latest&style=plastic https://img.shields.io/pypi/pyversions/nbqa.svg https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white http://www.mypy-lang.org/static/mypy_badge.svg https://interrogate.readthedocs.io/en/latest/_static/interrogate_badge.svg https://img.shields.io/badge/code%20style-black-000000.svg https://img.shields.io/badge/pylint-10/10-brightgreen.svg

Adapter to run any code-quality tool on a Jupyter notebook. Documentation is hosted here.

Prerequisites

If you don’t have pip installed, this Python installation guide can guide you through the process.

Installation

Install nbqa with

$ pip install nbqa

There are no dependencies for nbqa so installation should be lightning-fast. Check your installation with

$ nbqa --version
nbqa 0.1.10

Quickstart

The general syntax is

nbqa <command> <notebook or directory> <args>

, where command is any Python code quality tool. For example, you could run:

$ nbqa flake8 my_notebook.ipynb
$ nbqa black my_notebook.ipynb --check
$ nbqa mypy my_notebook.ipynb --ignore-missing-imports
$ nbqa pytest my_notebook.ipynb --doctest-modules

You can also pass an entire directory instead of a single file, e.g. nbqa flake8 my_notebooks.

Examples

Format your notebooks using black:

$ nbqa black . --line-length=96
reformatted tweet-sentiment-roberta-pytorch.ipynb
All done!  🍰 
1 files reformatted.

Check static type annotations:

$ nbqa mypy tweet-sentiment-roberta-pytorch.ipynb --ignore-missing-imports
tweet-sentiment-roberta-pytorch.ipynb:cell_10:5: error: Argument "batch_size" to "get_test_loader" has incompatible type "str"; expected "int"

Check any examples in your docstrings are correct:

$ nbqa pytest tweet-sentiment-roberta-pytorch.ipynb --doctest-modules
============================= test session starts ==============================
platform linux -- Python 3.8.2, pytest-5.4.3, py-1.9.0, pluggy-0.13.1
rootdir: /home/marco/tweet-sentiment-extraction
plugins: cov-2.10.0
collected 3 items

tweet-sentiment-roberta-pytorch.ipynb .                                  [100%]

============================== 1 passed in 0.03s ===============================

Supported third party packages

In theory, nbqa can adapt any Python code-quality tool to a Jupyter Notebook.

In practice, here are the tools it’s been tested with:

Configuration

You can pass extra configurations to your tools either via the command line (as in the examples above), or in a .nbqa.ini file, which could look something like this:

[black]
line-length=96

[flake8]
max-line-length=96
ignore=E203,W503,W504

Flags from this .ini will be passed to nbqa as they’re written.

Usage as pre-commit hook

If you want to use nbqa with pre-commit, here’s an example of what you could add to your .pre-commit-config.yaml file:

- repo: https://github.com/MarcoGorelli/nbQA-mirror-0
  rev: 0.1.10
  hooks:
    - id: nbqa
      args: ['flake8']
      name: nbqa-flake8
- repo: https://github.com/MarcoGorelli/nbQA-mirror-1
  rev: 0.1.10
  hooks:
    - id: nbqa
      args: ['isort']
      name: nbqa-isort
- repo: https://github.com/MarcoGorelli/nbQA-mirror-2
  rev: 0.1.10
  hooks:
    - id: nbqa
      args: ['mypy']
      name: nbqa-mypy

It’s entirely optional which tool to use with which mirror, the purpose of having these mirrors is to avoid duplicate keys in the .pre-commit.yaml file, but they’re all the same. I’m keeping 10 mirrors up-to-date with this repository, so currently that’s the maximum number of pre-commit hooks you can have for nbqa tools.

See Also

Here are some other code quality tools for Jupyter Notebooks:

Project template from cookiecutter.

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

nbqa-0.1.10.tar.gz (199.0 kB view details)

Uploaded Source

Built Distribution

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

nbqa-0.1.10-py3-none-any.whl (17.3 kB view details)

Uploaded Python 3

File details

Details for the file nbqa-0.1.10.tar.gz.

File metadata

  • Download URL: nbqa-0.1.10.tar.gz
  • Upload date:
  • Size: 199.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.2

File hashes

Hashes for nbqa-0.1.10.tar.gz
Algorithm Hash digest
SHA256 c7fa900495252938f7132544a52ca13fa55d5a64a6af6ee9396f99fc0da45afb
MD5 cd3a15dc672c334624c05ec474c48782
BLAKE2b-256 479ca20cf199fbf859177dce9094a24e3e489e8036967e661cdab6584870e5fb

See more details on using hashes here.

File details

Details for the file nbqa-0.1.10-py3-none-any.whl.

File metadata

  • Download URL: nbqa-0.1.10-py3-none-any.whl
  • Upload date:
  • Size: 17.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.2

File hashes

Hashes for nbqa-0.1.10-py3-none-any.whl
Algorithm Hash digest
SHA256 376c0f3d8440c511d2bd6c422d14a7a6749936807ede3a81d531f11dd514bac6
MD5 0c5ff1b209d824f7ef14ca1d58fa5d11
BLAKE2b-256 32d31f14ce28162d4e70dc178e6d8f4f3f51e55c322d3972277dbdf31ac43a6c

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