nbzip Jupyter Notebook Extension

0.1.0 · active · verified Fri Apr 17

nbzip is a Jupyter Notebook extension that allows users to compress and download all files within a specified directory directly from the Jupyter interface. It provides a convenient way to archive and retrieve project files from the Jupyter server's filesystem. The current version is 0.1.0. Its release cadence is low, as it's a stable, focused utility.

Common errors

Warnings

Install

Imports

Quickstart

This sequence installs the `nbzip` package and enables it as a Jupyter server extension. After enabling and restarting your Jupyter server, you will find a new 'Download directory (.zip)' option in the file menu of any Jupyter Notebook or JupyterLab interface when navigating directories, or an 'Archive' button in JupyterLab's file browser.

pip install nbzip
jupyter server extension enable --py nbzip --sys-prefix
# Restart Jupyter Notebook/Lab if it's running to apply changes.

view raw JSON →