experimental/cuda-ubi9/: jupyterlab-server-2.27.2 metadata and description

Simple index

A set of server components for JupyterLab and JupyterLab like applications.

author_email Jupyter Development Team <jupyter@googlegroups.com>
classifiers
  • Framework :: Jupyter
  • Framework :: Jupyter :: JupyterLab
  • Intended Audience :: Developers
  • Intended Audience :: Science/Research
  • Intended Audience :: System Administrators
  • License :: OSI Approved :: BSD License
  • Programming Language :: Python
  • Programming Language :: Python :: 3 :: Only
  • Programming Language :: Python :: 3.8
  • Programming Language :: Python :: 3.9
  • Programming Language :: Python :: 3.10
  • Programming Language :: Python :: 3.11
  • Programming Language :: Python :: 3.12
  • Typing :: Typed
description_content_type text/markdown
keywords jupyter,jupyterlab
license Copyright (c) 2015-2017, Project Jupyter Contributors All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
project_urls
  • Homepage, https://jupyterlab-server.readthedocs.io
  • Documentation, https://jupyterlab-server.readthedocs.io
  • Funding, https://numfocus.org/donate-to-jupyter
  • Source, https://github.com/jupyterlab/jupyterlab_server
  • Tracker, https://github.com/jupyterlab/jupyterlab_server/issues
provides_extras test
requires_dist
  • babel>=2.10
  • importlib-metadata>=4.8.3; python_version < '3.10'
  • jinja2>=3.0.3
  • json5>=0.9.0
  • jsonschema>=4.18.0
  • jupyter-server<3,>=1.21
  • packaging>=21.3
  • requests>=2.31
  • autodoc-traits; extra == 'docs'
  • jinja2<3.2.0; extra == 'docs'
  • mistune<4; extra == 'docs'
  • myst-parser; extra == 'docs'
  • pydata-sphinx-theme; extra == 'docs'
  • sphinx; extra == 'docs'
  • sphinx-copybutton; extra == 'docs'
  • sphinxcontrib-openapi>0.8; extra == 'docs'
  • openapi-core~=0.18.0; extra == 'openapi'
  • ruamel-yaml; extra == 'openapi'
  • hatch; extra == 'test'
  • ipykernel; extra == 'test'
  • openapi-core~=0.18.0; extra == 'test'
  • openapi-spec-validator<0.8.0,>=0.6.0; extra == 'test'
  • pytest-console-scripts; extra == 'test'
  • pytest-cov; extra == 'test'
  • pytest-jupyter[server]>=0.6.2; extra == 'test'
  • pytest-timeout; extra == 'test'
  • pytest<8,>=7.0; extra == 'test'
  • requests-mock; extra == 'test'
  • ruamel-yaml; extra == 'test'
  • sphinxcontrib-spelling; extra == 'test'
  • strict-rfc3339; extra == 'test'
  • werkzeug; extra == 'test'
requires_python >=3.8
File Tox results History
jupyterlab_server-2.27.2-py3-none-any.whl
Size
58 KB
Type
Python Wheel
Python
3

jupyterlab server

Build Status Documentation Status

Motivation

JupyterLab Server sits between JupyterLab and Jupyter Server, and provides a set of REST API handlers and utilities that are used by JupyterLab. It is a separate project in order to accommodate creating JupyterLab-like applications from a more limited scope.

Install

pip install jupyterlab_server

To include optional openapi dependencies, use:

pip install jupyterlab_server[openapi]

To include optional pytest_plugin dependencies, use:

pip install jupyterlab_server[test]

Usage

See the full documentation for API docs and REST endpoint descriptions.

Extending the Application

Subclass the LabServerApp and provide additional traits and handlers as appropriate for your application.

Contribution

Please see CONTRIBUTING.md for details.