loongson/pypi/: jupyter-client-6.1.11 metadata and description

Homepage Simple index Newer version available

Jupyter protocol implementation and client libraries

author Jupyter Development Team
author_email jupyter@googlegroups.com
classifiers
  • Framework :: Jupyter
  • Intended Audience :: Developers
  • Intended Audience :: Education
  • Intended Audience :: System Administrators
  • Intended Audience :: Science/Research
  • License :: OSI Approved :: BSD License
  • Operating System :: OS Independent
  • Programming Language :: Python
  • Programming Language :: Python :: 3
  • Programming Language :: Python :: 3.5
  • Programming Language :: Python :: 3.6
  • Programming Language :: Python :: 3.7
  • Programming Language :: Python :: 3.8
description_content_type text/markdown
keywords Interactive,Interpreter,Shell,Web
license BSD
platform
  • Linux
  • Mac OS X
  • Windows
project_urls
  • Documentation, https://jupyter-client.readthedocs.io
  • Source, https://github.com/jupyter/jupyter_client/
  • Tracker, https://github.com/jupyter/jupyter_client/issues
provides_extras test
requires_dist
  • traitlets
  • jupyter-core (>=4.6.0)
  • pyzmq (>=13)
  • python-dateutil (>=2.1)
  • tornado (>=4.1)
  • sphinx (>=1.3.6) ; extra == 'doc'
  • sphinx-rtd-theme ; extra == 'doc'
  • sphinxcontrib-github-alt ; extra == 'doc'
  • jedi (<=0.17.2) ; extra == 'test'
  • ipykernel ; extra == 'test'
  • ipython ; extra == 'test'
  • mock ; extra == 'test'
  • pytest ; extra == 'test'
  • pytest-asyncio ; extra == 'test'
  • async-generator ; extra == 'test'
  • pytest-timeout ; extra == 'test'
requires_python >=3.5

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

File Tox results History
jupyter_client-6.1.11-py3-none-any.whl
Size
106 KB
Type
Python Wheel
Python
3

Jupyter Client

Build Status Code Health

jupyter_client contains the reference implementation of the Jupyter protocol. It also provides client and kernel management APIs for working with kernels.

It also provides the jupyter kernelspec entrypoint for installing kernelspecs for use with Jupyter frontends.

Development Setup

The Jupyter Contributor Guides provide extensive information on contributing code or documentation to Jupyter projects. The limited instructions below for setting up a development environment are for your convenience.

Coding

You'll need Python and pip on the search path. Clone the Jupyter Client git repository to your computer, for example in /my/project/jupyter_client. Now create an editable install and download the dependencies of code and test suite by executing:

cd /my/projects/jupyter_client/
pip install -e .[test]
py.test

The last command runs the test suite to verify the setup. During development, you can pass filenames to py.test, and it will execute only those tests.

Documentation

The documentation of Jupyter Client is generated from the files in docs/ using Sphinx. Instructions for setting up Sphinx with a selection of optional modules are in the Documentation Guide. You'll also need the make command. For a minimal Sphinx installation to process the Jupyter Client docs, execute:

pip install ipykernel sphinx sphinx_rtd_theme

The following commands build the documentation in HTML format and check for broken links:

cd /my/projects/jupyter_client/docs/
make html linkcheck

Point your browser to the following URL to access the generated documentation:

file:///my/projects/jupyter_client/docs/_build/html/index.html