Skip to content
This repository has been archived by the owner on Apr 24, 2020. It is now read-only.

pybel/pybel-jupyter

Repository files navigation

PyBEL-Jupyter build Documentation Status

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 Current version on PyPI Stable Supported Python Versions MIT License

pybel_jupyter can be installed easily from PyPI with the following code in your favorite terminal:

$ pip install pybel-jupyter

or from the latest code on GitHub with:

$ 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:

>>> from pybel.examples import sialic_acid_graph
>>> from pybel_jupyter import to_jupyter
>>> to_jupyter(sialic_acid_graph)