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.
pip install nbzipVerified import paths — ran on the pinned version, not inferred.
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.
Run `jupyter server extension enable --py nbzip --sys-prefix` after `pip install nbzip` and restart your Jupyter server.
Understand that the operations are server-side. Ensure necessary files are present on the server where Jupyter is running before attempting to archive them.
Utilize the UI options (File menu or Archive button in JupyterLab) to access nbzip's functionality, rather than attempting to `import nbzip` and call functions directly in Python code.
No dependency data recorded yet.