loongson/pypi/: nbclient-0.5.3 metadata and description

Homepage Simple index

A client library for executing notebooks. Formerly nbconvert's ExecutePreprocessor.

author Jupyter Development Team
author_email jupyter@googlegroups.com
classifiers
  • Intended Audience :: Developers
  • Intended Audience :: System Administrators
  • Intended Audience :: Science/Research
  • License :: OSI Approved :: BSD License
  • Programming Language :: Python
  • Programming Language :: Python :: 3
  • Programming Language :: Python :: 3.6
  • Programming Language :: Python :: 3.7
  • Programming Language :: Python :: 3.8
  • Programming Language :: Python :: 3.9
description_content_type text/markdown
keywords jupyter,pipeline,notebook,executor
license BSD
platform
  • Linux
  • Mac OS X
  • Windows
project_urls
  • Documentation, https://nbclient.readthedocs.io
  • Funding, https://numfocus.org/
  • Source, https://github.com/jupyter/nbclient
  • Tracker, https://github.com/jupyter/nbclient/issues
provides_extras test
requires_dist
  • traitlets (>=4.2)
  • jupyter-client (>=6.1.5)
  • nbformat (>=5.0)
  • async-generator
  • nest-asyncio
  • codecov ; extra == 'dev'
  • coverage ; extra == 'dev'
  • ipython ; extra == 'dev'
  • ipykernel ; extra == 'dev'
  • ipywidgets ; extra == 'dev'
  • pytest (>=4.1) ; extra == 'dev'
  • pytest-cov (>=2.6.1) ; extra == 'dev'
  • check-manifest ; extra == 'dev'
  • flake8 ; extra == 'dev'
  • mypy ; extra == 'dev'
  • tox ; extra == 'dev'
  • bumpversion ; extra == 'dev'
  • xmltodict ; extra == 'dev'
  • pip (>=18.1) ; extra == 'dev'
  • wheel (>=0.31.0) ; extra == 'dev'
  • setuptools (>=38.6.0) ; extra == 'dev'
  • twine (>=1.11.0) ; extra == 'dev'
  • black ; (python_version >= "3.6") and extra == 'dev'
  • Sphinx (>=1.7) ; extra == 'sphinx'
  • sphinx-book-theme ; extra == 'sphinx'
  • mock ; extra == 'sphinx'
  • moto ; extra == 'sphinx'
  • myst-parser ; extra == 'sphinx'
  • codecov ; extra == 'test'
  • coverage ; extra == 'test'
  • ipython ; extra == 'test'
  • ipykernel ; extra == 'test'
  • ipywidgets ; extra == 'test'
  • pytest (>=4.1) ; extra == 'test'
  • pytest-cov (>=2.6.1) ; extra == 'test'
  • check-manifest ; extra == 'test'
  • flake8 ; extra == 'test'
  • mypy ; extra == 'test'
  • tox ; extra == 'test'
  • bumpversion ; extra == 'test'
  • xmltodict ; extra == 'test'
  • pip (>=18.1) ; extra == 'test'
  • wheel (>=0.31.0) ; extra == 'test'
  • setuptools (>=38.6.0) ; extra == 'test'
  • twine (>=1.11.0) ; extra == 'test'
  • black ; (python_version >= "3.6") and extra == 'test'
requires_python >=3.6.1

Because this project isn't in the mirror_whitelist, no releases from root/pypi are included.

File Tox results History
nbclient-0.5.3-py3-none-any.whl
Size
81 KB
Type
Python Wheel
Python
3

Binder Build Status Documentation Status image Python 3.6 Python 3.7 Python 3.8 Python 3.9 Code style: black

nbclient

NBClient, a client library for programmatic notebook execution, is a tool for running Jupyter Notebooks in different execution contexts. NBClient was spun out of nbconvert's former ExecutePreprocessor.

NBClient lets you execute notebooks.

Interactive Demo

To demo NBClient interactively, click this Binder badge to start the demo:

Binder

Installation

In a terminal, run:

python3 -m pip install nbclient

Documentation

See ReadTheDocs for more in-depth details about the project and the API Reference.

Python Version Support

This library currently supports Python 3.6+ versions. As minor Python versions are officially sunset by the Python org, nbclient will similarly drop support in the future.

Origins

This library used to be part of the nbconvert project. NBClient extracted nbconvert's ExecutePreprocessorinto its own library for easier updating and importing by downstream libraries and applications.

Relationship to JupyterClient

NBClient and JupyterClient are distinct projects.

jupyter_client is a client library for the jupyter protocol. Specifically, jupyter_client provides the Python API for starting, managing and communicating with Jupyter kernels.

While, nbclient allows notebooks to be run in different execution contexts.