Input widget for Time

Hello!

I would like to give the user a possibility to specify a datetime for which I will run an sql query. DatePicker allows me to specify the date but I am unable to find anything for time input. Could someone point me to a documentation or an example containing this sort of input? All I need is one input field with constrained values, 24 for hours, 60 for minutes, 60 for seconds

There is currently only DatePicker built-in to Bokeh. I would not be opposed to considering adding a time or datetime based picker, on the condition that values are only reported as unambiguous ISO 8601 datetime strings with timezone, instead of trying to compute a timestamp ourselves (this caused enormous difficulty in the past). Please feel free to open a GitHub issue to discuss.

In the mean time the only suggestion I can think of is to wrap some external widget as a Bokeh custom extension.