Metadata-Version: 2.1
Name: nbclassic
Version: 0.5.2
Summary: Jupyter Notebook as a Jupyter Server extension.
Home-page: https://github.com/jupyter/nbclassic
Author: Jupyter Development Team
Author-email: jupyter@googlegroups.com
License: BSD-3-Clause
Keywords: ipython,jupyter,interactive,interpreter,shell,web
Platform: Linux
Platform: Mac OS X
Platform: Windows
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: jinja2
Requires-Dist: tornado (>=6.1)
Requires-Dist: pyzmq (>=17)
Requires-Dist: argon2-cffi
Requires-Dist: traitlets (>=4.2.1)
Requires-Dist: jupyter-core (>=4.6.1)
Requires-Dist: jupyter-client (>=6.1.1)
Requires-Dist: ipython-genutils
Requires-Dist: jupyter-server (>=1.8)
Requires-Dist: nbformat
Requires-Dist: notebook-shim (>=0.1.0)
Requires-Dist: nbconvert (>=5)
Requires-Dist: nest-asyncio (>=1.5)
Requires-Dist: ipykernel
Requires-Dist: Send2Trash (>=1.8.0)
Requires-Dist: terminado (>=0.8.3)
Requires-Dist: prometheus-client
Provides-Extra: docs
Requires-Dist: sphinx ; extra == 'docs'
Requires-Dist: nbsphinx ; extra == 'docs'
Requires-Dist: sphinxcontrib-github-alt ; extra == 'docs'
Requires-Dist: sphinx-rtd-theme ; extra == 'docs'
Requires-Dist: myst-parser ; extra == 'docs'
Provides-Extra: json-logging
Requires-Dist: json-logging ; extra == 'json-logging'
Provides-Extra: test
Requires-Dist: pytest ; extra == 'test'
Requires-Dist: coverage ; extra == 'test'
Requires-Dist: requests ; extra == 'test'
Requires-Dist: testpath ; extra == 'test'
Requires-Dist: nbval ; extra == 'test'
Requires-Dist: pytest-playwright ; extra == 'test'
Requires-Dist: pytest-cov ; extra == 'test'
Requires-Dist: pytest-jupyter ; extra == 'test'
Requires-Dist: pytest-tornasync ; extra == 'test'
Requires-Dist: requests-unixsocket ; (sys_platform != "win32") and extra == 'test'

# Jupyter Notebook as a Jupyter Server Extension

![Testing nbclassic](https://github.com/jupyterlab/nbclassic/workflows/Testing%20nbclassic/badge.svg)
[![Documentation Status](https://readthedocs.org/projects/nbclassic/badge/?version=latest)](https://nbclassic.readthedocs.io/en/latest/?badge=latest)

NBClassic runs the [Jupyter NbClassic](https://github.com/jupyter/nbclassic) frontend on the Jupyter Server backend.

This project prepares for a future where JupyterLab and other frontends switch to [Jupyter Server](https://github.com/jupyter/jupyter_server/) for their Python Web application backend. Using this package, users can launch Jupyter NbClassic, JupyterLab and other frontends side-by-side on top of the new Python server backend.

## Basic Usage

Install from PyPI:
```
> pip install nbclassic
```
This will automatically enable the extension in Jupyter Server.

Launch directly:
```
> jupyter nbclassic
```

Alternatively, you can run Jupyter Server and visiting the `/tree` endpoint:
```
> jupyter server
```
