I've created an interactive app in my jupyter lab and called .show() on my panel object, so it started a bokeh server, as in the example below. It looks nice, but now I want to stop the server. How do I do that without stopping jupyter notebook or killing my python kernel? I don't want to restart my notebook kernel because I don't want to lose other variables present in my current notebook.
I just want to stop/kill that bokeh server that was initiated by .show()
import numpy as np
import pandas as pd
import hvplot.pandas
import holoviews as hv
import panel as pn
df = pd.DataFrame(np.random.normal(size=[50, 2]))
hv_plot = df.hvplot()
pn.panel(hv_plot).show(port=12345)