How can I use countplots from seaborn with Bokeh?

As the subject says, how can I use countplots from seaborn with bokeh?

My code is in line with the example:

import seaborn as sns

from bokeh import mpl

from bokeh.plotting import output_file, show

burg = pd.read_csv(‘BURGLARY.csv’)

sns.countplot(‘Month’, data=burg, hue=‘Year’, palette=‘coolwarm’)

output_file(“count.html”)

show(mpl.to_bokeh())

This simply results with page rendered but white.