A simple extension for Jupyter Notebook and Jupyter Lab to beautify Python code automatically using Black. Fork of dnanhkhoa/nb_black.
Project description
jupyter-black
A simple extension for Jupyter Notebook and Jupyter Lab to beautify Python code automatically using Black. Fork of dnanhkhoa/nb_black with a few minor modifications:
Features
Once loaded, automatically format syntactically correct jupyter
cells with
black
once they are run.
Enhancements compared to dnanhkhoa/nb_black:
- Configurability:
- Try to read black config from
pyproject.toml
if available - Override settings such as line length and
black.TargetVersion
if desired
- Try to read black config from
- Uses
black.format_cell
to greatly simplify the codebase - Adds tests
- Slightly more responsive (no longer requires
setTimeout
and a delay) - Free software: MIT
Introduction
black
is an extremely popular python formatter. Jupyter is an
awesome way to run python. This extension helps you automatically black
en
your jupyter
.
Dependencies
- Python >= 3.7
- See
setup.cfg
Quickstart
python3 -m venv .venv && source ./.venv/bin/activate
python3 -m pip install --upgrade pip
python3 -m pip install jupyter-black jupyter
python3 -m jupyter notebook
From here, there are two ways to load the extension:
Configurable (recommended):
import jupyter_black
jupyter_black.load()
To look at configuration options:
jupyter_black.load??
For example:
import black
import jupyter_black
jupyter_black.load(
lab=False,
line_length=79,
verbosity="DEBUG",
target_version=black.TargetVersion.PY310,
)
The other way:
%load_ext jupyter_black
This will load the extension using your defaults from pyproject.toml
if
available, or use the black
defaults. Please note that this defaults to
lab=True
, since moving to lab instead of standalone notebook installations
seems to be the direction of the jupyter project; this means this method of
loading will only work in JupyterLab, not in a standard notebook. For now,
users running a standalone notebook (instead of lab) need to use the
recommended (configurable) loading approach above.
Development Setup
- Clone the repo:
git clone https://github.com/n8henrie/jupyter-black && cd jupyter-black
- Make a virtualenv:
python3 -m venv .venv
- Activate venv, update pip, and install editable test/dev version:
$ source ./.venv/bin/activate
$ ./.venv/bin/python -m pip install --upgrade pip
$ ./.venv/bin/python -m pip install -e .[test,dev]
Notes:
- Tests use playwright
- You'll need to run this command (once) prior to running the tests:
python -m playwright install --with-deps firefox
tox
will automatically run these installation steps (helpful for CI)- If desired, pass the
--no-headless
flag topytest
for local debugging
TODO
Contribution ideas:
- More tests, currently very basic
- Ensure config is overridden in unsurprising ways
- Ensure other config options are properly passed to
black
- Ensure that
pyproject.toml
is searched for properly
- Write tests for jupyter lab, currently only tested for notebook
- I think the fixture could easily be modularized to also work for
lab
, but haven't done the work yet
- I think the fixture could easily be modularized to also work for
Contributing
Please see CONTRIBUTING.md
and TODO
.
Troubleshooting / FAQ
- How can I install an older / specific version of jupyter black?
- Install from a tag:
- pip install git+git://github.com/n8henrie/jupyter-black.git@v0.1.0
- Install from a specific commit:
- pip install git+git://github.com/n8henrie/jupyter-black.git@aabc123def456ghi789
- Install from a tag:
Acknowledgements
Many thanks to dnanhkhoa/nb_black for the original version!
And of course many thanks to the black and jupyter teams.
Also, after establishing the repo and reserving the name on PyPI, I noticed
there is another library of the same name:
drillan/jupyter-black. It looks
like there have been no commits in the last 2 years, and it was never put in
PyPI, so I think at this point I'll continue with this name. Sorry if this
causes any trouble or confusion. I'll note that @drillan's library probably
does things the right way by installing as an nbextension
.
Buy Me a Coffee
Changelog
0.3.4 :: 2023-04-27
- Only pass to
black.Mode
options frompyproject.toml
that are valid forblack.Mode
. Thanks @rldotai, https://github.com/n8henrie/jupyter-black/issues/7
0.3.2, 0.3.3 :: 2022-11-20
- Remove version constraints (thanks: @JakobGM, https://github.com/n8henrie/jupyter-black/issues/6)
- Update CI to ensure publishing should work
0.3.1 :: 2022-03-08
- Fix description (thanks: @bryanwweber)
- Version bump for PyPI
0.3.0 :: 2022-03-06
- Default to
lab=True
- Add warning popup for users that load in notebook with
lab=True
(including via%load_ext
) - Fix tests for the above
- Might as well minor version bump since this changes the API, even if
still
0.x
- Add warning popup for users that load in notebook with
0.2.1 :: 20220-03-04
- Python 3.10 support
- Black 22 support
0.2.0 :: 2021-11-14
- Breaking change: default to
lab=True
;%load_ext jupyter_black
will now work in jupyterlab and no longer work in a standalone notebook
0.1.1 :: 2021-09-28
- Unload the proper event
0.1.0 :: 2021-09-28
- First release on PyPI.
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
Built Distribution
File details
Details for the file jupyter-black-0.3.4.tar.gz
.
File metadata
- Download URL: jupyter-black-0.3.4.tar.gz
- Upload date:
- Size: 18.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2a38f33d4c321eb768f426103635ac9b80b40c9e42aa06072a729e3caddca4c3 |
|
MD5 | cb0a5dc8475746501250a43efde3ccb1 |
|
BLAKE2b-256 | 722119ae14b522083340e58a52125eddafb6d24028db7112acca0f142904744b |
File details
Details for the file jupyter_black-0.3.4-py3-none-any.whl
.
File metadata
- Download URL: jupyter_black-0.3.4-py3-none-any.whl
- Upload date:
- Size: 8.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8690ec1d16d173a74eecc44419755ca7209c494b213e0d7b04c40a878239e247 |
|
MD5 | ab50e6a563a282966c05354161b18f63 |
|
BLAKE2b-256 | 6e9ada699c3f187d59200b53e363c8fb9aa09600e4b25c0694fdf1f55420f2ce |