Skip to main content

Jupyter notebooks as markdown documents, Python or R scripts

Project description

Jupyter notebooks as markdown documents, Python or R scripts

Pypi Pypi Build Status codecov.io pylint Score pyversions Binder

You've always wanted to edit Jupyter notebooks in your favorite editor? To have Jupyter notebooks under version control? Or to collaborate on Jupyter notebooks using standard (text-only) merge tools?

Supported formats

The jupytext package allows to open and edit, in Jupyter,

  • Python and R scripts ( extensions .py and .R)
  • Markdown documents (extension .md)
  • R Markdown documents (extension .Rmd).

Obviously these documents can also be edited outside of Jupyter. You will find useful to refactor your notebook as a mere python script in a real IDE. If you are working on a documentation and you prefer the markdown format, you will be able to use both Jupyter and your specialized markdown editor.

Reloading the updated document in Jupyter is just a matter of refreshing the browser. Refreshing preserves the python variables. Outputs are also preserved when you use the text notebooks in pair with classical notebooks.

Try our package on Binder! Recommended experiments are

  • Have a look at the sample text notebooks in the demo folder. See how notebook are represented as text
  • Go to Binder and open these notebooks
  • You may also open arbitrary python scripts like matplotlib example.py (run it)
  • Feel free to explore the package files with Jupyter (open README.md at the project root)
  • Check by yourself that outputs and variables are preserved, and inputs are updated, when the text notebook is modified outside of Jupyter (this is Paired Jupyter notebook and python script.ipynb).

Screenshots

Round-trip conversion

Round trip conversion is safe! A few hundred of tests help to guarantee this.

  • Script to Jupyter notebook, to script again is identity. If you associate a Jupyter kernel to your notebook, that information will go to a yaml header at the top of your script.
  • Markdown to Jupyter notebook, to markdown again is identity.
  • Jupyter to script, and Jupyter again preserves source and metadata.
  • Jupyter to markdown, and Jupyter again preserves source and metadata (cell metadata available only for R markdown). Note that markdown cells with two consecutive blank lines will be splitted into multiple cells (as the two blank line pattern is used to separate cells).

Jupyter setup

To open .py, .R, .md and .Rmd files as notebooks in Jupyter, use our ContentsManager. That is:

  • generate a jupyter config, if you don't have one yet, with jupyter notebook --generate-config
  • edit the config and include the below:
c.NotebookApp.contents_manager_class = jupytext

Then, make sure you have the jupytext package up-to-date, and re-start jupyter, i.e. run

pip install jupytext --upgrade
jupyter notebook

Paired notebooks

If you want to preserve inputs and outputs, while being able to edit the text format, then add an jupytext_formats entry to the notebook metadata, in Jupyter, as follows:

{
  "kernelspec": {
    "name": "python3",
    (...)
  },
  "language_info": {
    (...)
  },
  "jupytext_formats": "ipynb,py"
}

When you save the notebook, both the Jupyter notebook and the python scripts are updated. You can edit the text version and then get the updated version in Jupyter by refreshing your browser (you may want to deactivate Jupyter's autosave with %autosave 0).

Accepted formats are: ipynb, md, Rmd, py and R. In case you want multiple text extensions, please note that the order matters: the first non-ipynb extension is the one used as the reference source for notebook inputs when you open the ipynb file.

Finally, it is also possible to pair every notebook with a text representation. If you add

c.NotebookApp.contents_manager_class = "jupytext.TextFileContentsManager"
c.ContentsManager.default_jupytext_formats = "ipynb,py" # or "ipynb,nb.py" # or "ipynb,md" # or "ipynb,Rmd"

to your Jupyter configuration file, then every Jupyter notebook that you save will have a companion .py (.nb.py, .md, or .Rmd) notebook. And every .py (.nb.py, .md, or .Rmd) notebook will have a companion .ipynb notebook.

The default configuration can also contain multiple extension groups. Use

c.NotebookApp.contents_manager_class = "jupytext.TextFileContentsManager"
c.ContentsManager.default_jupytext_formats = "ipynb,nb.py;py.ipynb,py"

if you want .ipynb notebooks to have .nb.py companion scripts, and .py files to have .py.ipynb companion notebooks (learn more on the possible values for jupytext_formats here).

Command line conversion

The package provides a jupytext script for command line conversion between the various notebook extensions:

jupytext notebook.ipynb md --test          # Test round trip conversion
jupytext notebook.ipynb md                 # display the markdown version on screen

jupytext notebook.ipynb .md                # create a notebook.md file
jupytext notebook.ipynb .py                # create a notebook.py file
jupytext notebook.ipynb notebook.py        # create a notebook.py file

jupytext notebook.md .ipynb                # overwrite notebook.ipynb (remove outputs)
jupytext notebook.md .ipynb --update       # update notebook.ipynb (preserve outputs)

jupytext notebook1.md notebook2.py .ipynb  # overwrite notebook1.ipynb notebook2.ipynb

Usefull cell metadata

  • Set "active": "ipynb,py" if you want that cell to be active only in the Jupyter notebook, and the Python script representation. Use "active": "ipynb" if you want that cell to be active only in Jupyter.
  • Code cells that contain two consecutive blank lines use an explicit end-of-cell marker "endofcell" in the script representation.
  • R markdown's cell options echo and include are mapped to the opposite of Jupyter cell metadata hide_input and hide_output.

Jupyter magics

Jupyter magics are escaped in scripts and R markdown to allow code to be executed. Comment a magic with #noescape on the same line to avoid escaping. User defined magics can be escaped with #escape. Magics are not escaped in the plain markdown representation.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

jupytext-0.6.1.tar.gz (35.9 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page