Helpful Tools for your Workflow¶
This page is dedicated to tools that can facilitate or improve project workflows. If there's something you use regularly that you think should be on this list, please suggest it!
Jupytext¶
If you use Jupyter Notebooks in your project (as many of us do), you may want to consider adding Jupytext to your repertoire. Jupytext allows you to pair a Jupyter Notebook to a .py
(or .md
) file so that git
renders clearer and more informative diffs, showing only the code and markdown cells that have been updated between commits.
This makes it easier to see the differences between versions as you work through your project. For instance, if you re-ran your notebook with just a new random seed, the diff in the commit would show that without reproducing the whole thing, and you could go look at the output in the notebook.
How it Works¶
Notebooks can be paired individually, or you can set a global config in your notebooks folder to generate a pairing automatically. Unfortunately, this automated pairing only works if you use Jupyter Lab (i.e., run notebooks through the terminal), not if you work in VS Code or other IDEs. Manual pairing code is given below.
Jupytext commands in terminal for VS Code:¶
jupytext --set-formats ipynb,py:percent <notebook-name>.ipynb # Pair a notebook to a py script
jupytext --sync <notebook-name>.ipynb # Sync the two representations
But wait! ...There's another way to automate it!¶
There is a jupytext pre-commit hook that can be used to sync your paired files automatically when updating your GitHub repo. To learn more about pre-commit hooks in general, see the git docs on pre-commit hooks.
Ruff¶
Ruffย is a fast python formatter and linter. You can install it withย pip install ruff
or conda install ruff
ย in your virtual/conda environment. They also have extensions for VS Code and other editors supporting LSP.
To format a file, run:
and to lint it runRuff can also be set up as part of a pre-commit hook or GitHub Workflow. See their Usage section for more information.