Create interactive plots and web applications in Python
Interactive plots and applications in the browser from Python
bokeh$ bokeh serve myapp.py$ bokeh json myplot.py$ python3 -c "from bokeh.plotting import figure, output_file, show; p = figure(); p.circle([1,2,3], [4,5,6]); output_file('plot.html'); show(p)"$ bokeh serve --show myapp.py --port 5007$ python3 -c "from bokeh.embed import file_html; from bokeh.plotting import figure; from bokeh.resources import CDN; p = figure(); p.circle([1,2], [3,4]); print(file_html(p, CDN, 'plot'))"