Metadata-Version: 2.1
Name: nbconvert
Version: 5.5.0.dev0
Summary: Converting Jupyter Notebooks
Home-page: https://jupyter.org
Author: Jupyter Development Team
Author-email: jupyter@googlegroups.com
License: BSD
Project-URL: Documentation, https://nbconvert.readthedocs.io/en/latest/
Project-URL: Funding, https://numfocus.org/
Project-URL: Source, https://github.com/jupyter/nbconvert
Project-URL: Tracker, https://github.com/jupyter/nbconvert/issues
Description: # nbconvert
        ### Jupyter Notebook Conversion
        
        [![Google Group](https://img.shields.io/badge/-Google%20Group-lightgrey.svg)](https://groups.google.com/forum/#!forum/jupyter)
        [![Build Status](https://travis-ci.org/jupyter/nbconvert.svg?branch=master)](https://travis-ci.org/jupyter/nbconvert)
        [![Documentation Status](https://readthedocs.org/projects/nbconvert/badge/?version=latest)](https://nbconvert.readthedocs.io/en/latest/?badge=latest)
        [![Documentation Status](https://readthedocs.org/projects/nbconvert/badge/?version=stable)](http://nbconvert.readthedocs.io/en/stable/?badge=stable)
        [![codecov.io](https://codecov.io/github/jupyter/nbconvert/coverage.svg?branch=master)](https://codecov.io/github/jupyter/nbconvert?branch=master)
        
        
        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:
        
        * HTML
        * LaTeX
        * PDF
        * Reveal JS
        * Markdown (md)
        * ReStructured Text (rst)
        * executable script
        
        
        ## 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`.
        
        ## 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
        ```
        
        
        ## Resources
        
        - [Documentation for Jupyter nbconvert](https://nbconvert.readthedocs.io/en/latest/)
          [[PDF](https://media.readthedocs.org/pdf/nbconvert/latest/nbconvert.pdf)]
        - [nbconvert examples on GitHub](https://github.com/jupyter/nbconvert-examples)
        - [Issues](https://github.com/jupyter/nbconvert/issues)
        - [Technical support - Jupyter Google Group](https://groups.google.com/forum/#!forum/jupyter)
        - [Project Jupyter website](https://jupyter.org)
        - [Documentation for Project Jupyter](https://jupyter.readthedocs.io/en/latest/index.html)
          [[PDF](https://media.readthedocs.org/pdf/jupyter/latest/jupyter.pdf)]
        
        
        [Jinja]: http://jinja.pocoo.org/
        
Keywords: 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 :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
Description-Content-Type: text/markdown
Provides-Extra: all
Provides-Extra: docs
Provides-Extra: execute
Provides-Extra: test
Provides-Extra: serve
