1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 10:02:10 +02:00
tldr/pages/common/jupytext.md
Vitor Henrique c8f956319f
pages*: simplify page description (#12149)
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2024-02-14 21:25:13 +01:00

741 B

jupytext

Convert Jupyter notebooks to plain text documents, and back again. More information: https://jupytext.readthedocs.io.

  • 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:

jupytext --sync {{notebook.ipynb}}