Metadata-Version: 2.1
Name: pybel_jupyter
Version: 0.3.0
Summary: A PyBEL extension for Jupyter notebooks
Home-page: https://github.com/pybel/pybel-jupyter
Author: Charles Tapley Hoyt
Author-email: cthoyt@gmail.com
Maintainer: Charles Tapley Hoyt
Maintainer-email: cthoyt@gmail.com
License: MIT
Download-URL: https://github.com/pybel/pybel-jupyter/releases
Project-URL: Bug Tracker, https://github.com/pybel/pybel-jupyter/issues
Project-URL: Source Code, https://github.com/pybel/pybel-jupyter
Project-URL: Documentation, https://pybel-jupyter.readthedocs.io
Description: PyBEL-Jupyter |build| |docs|
        ============================
        A PyBEL extension for Jupyter notebooks.
        
        .. warning::
        
            This module has been included in PyBEL as of v0.14.0, so it has been deprecated. You can keep using it like normal,
            though.
        
        Installation |pypi_version| |python_versions| |pypi_license|
        ------------------------------------------------------------
        ``pybel_jupyter`` can be installed easily from `PyPI <https://pypi.python.org/pypi/pybel-jupyter>`_ with the following
        code in your favorite terminal:
        
        .. code-block:: sh
        
            $ pip install pybel-jupyter
        
        or from the latest code on `GitHub <https://github.com/pybel/pybel-jupyter>`_ with:
        
        .. code-block:: sh
        
            $ pip install git+https://github.com/pybel/pybel-jupyter.git
        
        Getting Started
        ---------------
        Inside a Jupyter notebook, run the following code at the end of the cell to get an interactive visualization:
        
        .. code-block:: python
        
            >>> from pybel.examples import sialic_acid_graph
            >>> from pybel_jupyter import to_jupyter
            >>> to_jupyter(sialic_acid_graph)
        
        .. |build| image:: https://travis-ci.com/pybel/pybel-jupyter.svg?branch=master
            :target: https://travis-ci.com/pybel/pybel-jupyter
        
        .. |docs| image:: https://readthedocs.org/projects/pybel-jupyter/badge/?version=latest
            :target: https://pybel.readthedocs.io/projects/jupyter/en/latest/?badge=latest
            :alt: Documentation Status
        
        .. |python_versions| image:: https://img.shields.io/pypi/pyversions/pybel-jupyter.svg
            :alt: Stable Supported Python Versions
        
        .. |pypi_version| image:: https://img.shields.io/pypi/v/pybel-jupyter.svg
            :alt: Current version on PyPI
        
        .. |pypi_license| image:: https://img.shields.io/pypi/l/pybel-jupyter.svg
            :alt: MIT License
        
Keywords: Biological Expression Language,BEL,Domain Specific Language,DSL,Systems Biology,Networks Biology
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Classifier: Topic :: Scientific/Engineering :: Chemistry
Requires-Python: >=3.5
Provides-Extra: docs
