I have one bokeh plot plot.ipynb i want to deploy this plot into my server , so that i can do dynamic data updation into my plot in my own server deployment . Can you please tell me what is the best way/easy way to do deployment of my plot into my own server.
from shapely.geometry import Point
import pandas as pd
import numpy as np
import geoviews as gv
.......
dd=df_div.opts(width=70, height=70)
dd1=df_div1.opts(width=600, height=90)
dd2=df_div2.opts(width=100,height=10)
finalplot=pn.Column(pn.Row(dd, dd1, dd2), tiles*rasterize(hmap1).options(**opts)*logo1.opts(hooks=
[absolute_position], apply_ranges=False)).servable()
finalplot
I am thinking to :- 1. convert plot.ipynb file to plot.py . 2. then run plot.py as a dynamic webpage
Deploying through bokeh server i can do but i am thinking that if i am having all the modules files ( pandas, bokeh , panel etc) files then why not use those modules files , my own server and deploy the plot into my own server instead of first deploying my plot into bokeh serve then my own server as the loading time will get increase.
But i don't know how to do this deployment OR is there any other best / fast way to do plot deployment into my own server with dynamic data behavior .