bokeh 1.4.0
>>> import bokeh
>>> bokeh.__version__
'1.4.0'
>>> from bokeh.models import Dropdown
>>> Dropdown().value is None
True
bokeh 2.0
>>> import bokeh
>>> bokeh.__version__
'2.0.0'
>>> from bokeh.models import Dropdown
>>> Dropdown().value is None
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'Dropdown' object has no attribute 'value'
Is there another attribute that is meant to be used now in place of value?
see here for a use-case of the value
attribute.