standalone
Ad-hoc standalone dashboard/widget server for use within Jupyter notebooks.
It runs everything needed to see a dashboard or widget in threads.
This is mostly intended for convenient local use (e.g. by a researcher), or could be adapted for a containerized (in the Docker-sense) environment, e.g. where the user has metador libraries available and can inspect containers.
Do not use this to deploy a widget server backing the widgets on a website.
silence_flask ¶
silence_flask()
Disable HTTP request log (for use inside jupyter).
Source code in src/metador_core/widget/jupyter/standalone.py
32 33 34 35 |
|
run ¶
run(
*,
debug: bool = False,
pn_exts: Optional[List[str]] = None
)
Run ad-hoc standalone server to use widgets and dashboards in a Jupyter notebook.
Source code in src/metador_core/widget/jupyter/standalone.py
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 |
|