Not that you should ever really want to use import *, but '__version__' is listed in openml\__init__.py:__all__ which means it gets imported:
>>> from openml import *
>>> __version__
'0.9.0'
This is generally not done, so we might remove '__version__' from our __all__ list.
Not that you should ever really want to use
import *, but '__version__' is listed inopenml\__init__.py:__all__which means it gets imported:This is generally not done, so we might remove '__version__' from our
__all__list.