Hi, it seems importing the GIS breaks a former from time import time import as demonstrated in the following example.

Switching the imports works, but it's not intuitive, and neither very PEP 8.
import time scattered around in the __init__.py file. Wouldn't it be better to narrow the import to a from time import sleep in the imports at top of the file?Strange too

even in jupyter console and spyder

I read somewhere that the time namespace gets reassigned, but I can't put my hand on it
Yes the python API does use the `time` module. This is not an easy fix since the API uses many 3rd party libraries as well who do `import time`, so there is no guarantee that if we modify code to not use `import time` that it would still not be an issue.