LinuxCommandLibrary

jupytext

Tool to convert Jupyter notebooks to plain text documents, and back again.

TLDR

Turn a notebook into a paired .ipynb/.py notebook

$ jupytext --set-formats ipynb,py [notebook.ipynb]
copy


Convert a notebook to a .py file
$ jupytext --to py [notebook.ipynb]
copy


Convert a .py file to a notebook with no outputs
$ jupytext --to notebook [notebook.py]
copy


Convert a .md file to a notebook and run it
$ jupytext --to notebook --execute [notebook.md]
copy


Update the input cells in a notebook and preserve outputs and metadata
$ jupytext --update --to notebook [notebook.py]
copy


Update all paired representations of a notebook
$ jupytext --sync [notebook.ipynb]
copy

Copied to clipboard