logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Convert Jupyter Notebooks - Jupytext | Online Free DevTools by Hexmos

Convert Jupyter notebooks to various formats with Jupytext. Sync notebooks, update cells, and preserve outputs. Free online tool, no registration required.

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}}

See Also