Skip to content

collab-uniba/pynblint

Repository files navigation

Logo

PyPI version PyPI - Python Version

CI Documentation Status codecov License: MIT code style

Many professional data scientists use Jupyter Notebook to accomplish their daily tasks, from preliminary data exploration to model prototyping. Notebooks' interactivity is particularly convenient for data-centric programming and their self-documenting nature provides excellent support for the communication of analytical results.

Nevertheless, Jupyter Notebook has been often criticized for inducing bad programming habits and scarcely supporting Software Engineering best practices. To really benefit from notebooks, users should be aware of their common pitfalls and learn how to prevent them.

In previous work (see "Eliciting Best Practices for Collaboration with Computational Notebooks" [1]), we introduced a catalog of 17 empirically-validated guidelines for the collaborative use of notebooks in a professional context.

To foster the adoption of these best practices, we have created Pynblint, a static analysis tool for Jupyter notebooks written in Python. Pynblint reveals potential notebook defects and recommends corrective actions. It can be operated either as a standalone CLI application or as part of a CI/CD pipeline.

Pynblint screens

The core linting rules of Pynblint have been derived as operationalizations of the best practices from our catalog. Nonetheless, the plug-in architecture of Pynblint enables its users to easily extend the core set of checks with their own linting rules.

Requirements

Python 3.7+.

Installation

Pynblint can be installed with pip or another PyPI package manager:

pip install pynblint

After installation, we recommend exploring the command-line interface of the tool:

pynblint --help

Usage

Pynblint can be used to analyze:

  • a standalone notebook:

    pynblint path/to/the/notebook.ipynb
  • a code repository containing notebooks:

    pynblint path/to/the/project/dir/
    • (possibly also compressed as a .zip archive):

      pynblint path/to/the/compressed/archive.zip
  • a public GitHub repository containing notebooks (support for private repositories is on our roadmap 🙂):

    pynblint --from-github https://github.com/collab-uniba/pynblint

For further information on the available options, please refer to the project documentation.

Catalog of best practices

In the following, we report the catalog of empirically-validated best practices on which Pynblint is based [1].

For each guideline, we specify the current state of implementation within Pynblint:

  • ✅ = "implemented"
  • ⏳ = "partially implemented / work in progress"
  • ❌ = "not on our roadmap"
State Best Practice from [1]
Use version control
Manage project dependencies
Use self-contained environments
Put imports at the beginning
Ensure re-executability (re-run notebooks top to bottom)
Modularize your code
Test your code
Name your notebooks consistently
Stick to coding standards
Use relative paths
Document your analysis
Leverage Markdown headings to structure your notebook
Keep your notebook clean
Keep your notebook concise
Distinguish production and development artifacts
Make your notebooks available
Make your data available

License

This project is licensed under the terms of the MIT license.

References

[1] Luigi Quaranta, Fabio Calefato, and Filippo Lanubile. 2022. Eliciting Best Practices for Collaboration with Computational Notebooks. Proc. ACM Hum.-Comput. Interact. 6, CSCW1, Article 87 (April 2022), 41 pages. https://doi.org/10.1145/3512934