2025-03-14 21:59:59 -06:00
|
|
|
# jupytext
|
|
|
|
|
|
|
|
|
|
> Convert Jupyter notebooks to plain text documents, and back again.
|
2025-12-16 10:20:31 -07:00
|
|
|
> More information: <https://manned.org/jupytext>.
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Turn a notebook into a paired `.ipynb`/`.py` notebook:
|
|
|
|
|
|
|
|
|
|
`jupytext --set-formats ipynb,py {{notebook.ipynb}}`
|
|
|
|
|
|
|
|
|
|
- Convert a notebook to a `.py` file:
|
|
|
|
|
|
|
|
|
|
`jupytext --to py {{notebook.ipynb}}`
|
|
|
|
|
|
|
|
|
|
- Convert a `.py` file to a notebook with no outputs:
|
|
|
|
|
|
|
|
|
|
`jupytext --to notebook {{notebook.py}}`
|
|
|
|
|
|
|
|
|
|
- Convert a `.md` file to a notebook and run it:
|
|
|
|
|
|
|
|
|
|
`jupytext --to notebook --execute {{notebook.md}}`
|
|
|
|
|
|
|
|
|
|
- Update the input cells in a notebook and preserve outputs and metadata:
|
|
|
|
|
|
|
|
|
|
`jupytext --update --to notebook {{notebook.py}}`
|
|
|
|
|
|
|
|
|
|
- Update all paired representations of a notebook:
|
|
|
|
|
|
2025-12-16 10:20:31 -07:00
|
|
|
`jupytext {{[-s|--sync]}} {{notebook.ipynb}}`
|