Forrest logo
back to context overview

jupytext

List of commands for jupytext:

  • jupytext:tldr:0ced9 jupytext: Update the input cells in a notebook and preserve outputs and metadata.
    $ jupytext --update --to notebook ${notebook-py}
    try on your machine
    explain this command
  • jupytext:tldr:28098 jupytext: Convert a notebook to a `.py` file.
    $ jupytext --to py ${notebook-ipynb}
    try on your machine
    explain this command
  • jupytext:tldr:5239d jupytext: Convert a `.py` file to a notebook with no outputs.
    $ jupytext --to notebook ${notebook-py}
    try on your machine
    explain this command
  • jupytext:tldr:54043 jupytext: Update all paired representations of a notebook.
    $ jupytext --sync ${notebook-ipynb}
    try on your machine
    explain this command
  • jupytext:tldr:b638f jupytext: Turn a notebook into a paired `.ipynb`/`.py` notebook.
    $ jupytext --set-formats ipynb,py ${notebook-ipynb}
    try on your machine
    explain this command
  • jupytext:tldr:f8f24 jupytext: Convert a `.md` file to a notebook and run it.
    $ jupytext --to notebook --execute ${notebook-md}
    try on your machine
    explain this command
back to context overview