()
| 345 | |
| 346 | |
| 347 | def target(): |
| 348 | from bokeh.io import output_notebook |
| 349 | from bokeh.io import show |
| 350 | |
| 351 | output_notebook(verbose=True, notebook_type='pywebio') |
| 352 | |
| 353 | put_markdown('# Bokeh') |
| 354 | |
| 355 | put_markdown('## Basic doc') |
| 356 | basci_doc() |
| 357 | |
| 358 | put_markdown('## App') |
| 359 | show(bkapp) |
| 360 | |
| 361 | put_markdown('## App again') |
| 362 | show(bkapp) |
| 363 | |
| 364 | put_markdown('## Widgets') |
| 365 | widgets() |
| 366 | |
| 367 | put_markdown('# pyecharts') |
| 368 | pyecharts() |
| 369 | |
| 370 | put_markdown('# cutecharts') |
| 371 | cutecharts() |
| 372 | |
| 373 | put_markdown('# plotly') |
| 374 | plotly() |
| 375 | |
| 376 | |
| 377 | def test(server_proc: subprocess.Popen, browser: Chrome): |
nothing calls this directly
no test coverage detected
searching dependent graphs…