An open API service indexing awesome lists of open source software.

https://github.com/dfm/black_nbconvert

Apply black to ipynb files
https://github.com/dfm/black_nbconvert

Last synced: about 1 year ago
JSON representation

Apply black to ipynb files

Awesome Lists containing this project

README

          

# black natively supports Jupyter notebooks

**This project is no longer necessary!**

To replace your `black_nbconvert` `pre-commit` configuration, use:

```yaml
- repo: https://github.com/psf/black
rev: "22.1.0"
hooks:
- id: black-jupyter
```

If you're still using this project, the original README is below:

# black + nbconvert

Tired of having to *think* about formatting in Jupyter notebooks?
Look no further!
This script will correctly format your Jupyter notebooks for you using [black](https://black.readthedocs.io).

**Warning: This project will overwrite your notebooks in place.
It shouldn't change anything except the format, but use at your own risk!**

## Installation & Usage

To install:

```bash
pip install black_nbconvert
```

To check a notebook:

```bash
black_nbconvert --check /path/to/a/notebook.ipynb
```

To fix the formatting in a notebook (in place):

```bash
black_nbconvert /path/to/a/notebook.ipynb
```

If you pass a directory instead of a notebook file, notebooks will be found recursively below that directory.
For example:

```bash
black_nbconvert .
```

will fix the formatting for all notebooks in the current directory and (recursively) below.

*Configuration:* Configuration for `black` in a `pyproject.toml` file above the target files will be respected.

## Version control integration

Use [pre-commit](https://pre-commit.com/).
Once you [have it installed](https://pre-commit.com/#install), add this to the `.pre-commit-config.yaml` in your repository:

```yaml
repos:
- repo: https://github.com/dfm/black_nbconvert
rev: v0.3.0
hooks:
- id: black_nbconvert
```

Then run `pre-commit install` and you're ready to go.