loongson/pypi/: nbconvert-6.0.7 metadata and description

Homepage Simple index Newer version available

Converting Jupyter Notebooks

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
description_content_type text/markdown
keywords Interactive,Interpreter,Shell,Web
license BSD
platform
  • Linux
  • Mac OS X
  • Windows
project_urls
  • Documentation, https://nbconvert.readthedocs.io/en/latest/
  • Funding, https://numfocus.org/
  • Source, https://github.com/jupyter/nbconvert
  • Tracker, https://github.com/jupyter/nbconvert/issues
provides_extras webpdf
requires_dist
  • mistune (<2,>=0.8.1)
  • jinja2 (>=2.4)
  • pygments (>=2.4.1)
  • jupyterlab-pygments
  • traitlets (>=4.2)
  • jupyter-core
  • nbformat (>=4.4)
  • entrypoints (>=0.2.2)
  • bleach
  • pandocfilters (>=1.4.1)
  • testpath
  • defusedxml
  • nbclient (<0.6.0,>=0.5.0)
  • pytest ; extra == 'all'
  • pytest-cov ; extra == 'all'
  • pytest-dependency ; extra == 'all'
  • ipykernel ; extra == 'all'
  • ipywidgets (>=7) ; extra == 'all'
  • pyppeteer (==0.2.2) ; extra == 'all'
  • tornado (>=4.0) ; extra == 'all'
  • sphinx (>=1.5.1) ; extra == 'all'
  • sphinx-rtd-theme ; extra == 'all'
  • nbsphinx (>=0.2.12) ; extra == 'all'
  • ipython ; extra == 'all'
  • sphinx (>=1.5.1) ; extra == 'docs'
  • sphinx-rtd-theme ; extra == 'docs'
  • nbsphinx (>=0.2.12) ; extra == 'docs'
  • ipython ; extra == 'docs'
  • tornado (>=4.0) ; extra == 'serve'
  • pytest ; extra == 'test'
  • pytest-cov ; extra == 'test'
  • pytest-dependency ; extra == 'test'
  • ipykernel ; extra == 'test'
  • ipywidgets (>=7) ; extra == 'test'
  • pyppeteer (==0.2.2) ; extra == 'test'
  • pyppeteer (==0.2.2) ; extra == 'webpdf'
requires_python >=3.6

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

File Tox results History
nbconvert-6.0.7-py3-none-any.whl
Size
539 KB
Type
Python Wheel
Python
3

nbconvert

Jupyter Notebook Conversion

Google Group Build Status Documentation Status Documentation Status codecov.io CircleCI Docs Status

The nbconvert tool, jupyter nbconvert, converts notebooks to various other formats via Jinja templates. The nbconvert tool allows you to convert an .ipynb notebook file into various static formats including:

Usage

From the command line, use nbconvert to convert a Jupyter notebook (input) to a a different format (output). The basic command structure is:

$ jupyter nbconvert --to <output format> <input notebook>

where <output format> is the desired output format and <input notebook> is the filename of the Jupyter notebook.

Example: Convert a notebook to HTML

Convert Jupyter notebook file, mynotebook.ipynb, to HTML using:

$ jupyter nbconvert --to html mynotebook.ipynb

This command creates an HTML output file named mynotebook.html.

Python requirement

Nbconvert 6.0 provides limited support for Python 3.6 (3.6.1 or greater), and support will be dropped with nbconvert 6.1. Limited support means we will test and run CI on Python 3.6.12 or higher. Issues that are found only affecting Python 3.6 are not guaranteed to be fixed. We recommend all users of nbconvert use Python 3.7 and higher.

Dev Install

Check if pandoc is installed (pandoc --version); if needed, install:

sudo apt-get install pandoc

Or

brew install pandoc

Install nbconvert for development using:

git clone https://github.com/jupyter/nbconvert.git
cd nbconvert
pip install -e .

Running the tests after a dev install above:

pip install nbconvert[test]
py.test --pyargs nbconvert

Documentation

Technical Support

Jupyter Resources