Is there any way we can have bokeh plot from Mysql dmp dump file?

I have Mysql file, I want to plot the graph from this mysql .dmp file ,
Is there any way we can do,
Can you provide any link of bokeh plot or holoview plot .
Thank you.

Hi @sameerCoder,

Bokeh does not include any way to directly use a sql dump as a data source. You’d want to use some other python process to transform the dump file, probably into a ColumnDataSource, for use by the plots.

1 Like