Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to display a python string as HTML in jupyter notebook

Tags:

In IPython notebook, I used to be able to display a python string that contains html as actual html, by using the HTML function from IPython's display module.

from IPython.display import HTML

In jupyter notebook the display module no longer exists. Does anyone know where I can find the HTML function?

I use Jupyter notebook 4.1, IPython 4.0.2 and Python 3.5.1 64 bit

like image 789
jkokorian Avatar asked Mar 28 '16 17:03

jkokorian


1 Answers

Use the function display

def bar():
    from IPython.display import display, HTML
    chart = HTML('<h1>Hello, world!</h1>')
    # or chart = charts.plot(...)
    display(chart)

bar()

source: http://suanfazu.com/t/jupyter-highcharts/13438/2

like image 176
jona Avatar answered Sep 19 '22 08:09

jona