It is well-known among Python developers (or at least, it should be),
that is a bad idea to import everything from a module, for example by
doing from <module> import *.
The idea on this post, is to highlight and gather the reasons why this is a bad practice, in order to collectively identify many undesired effects. However, without losing pragmatism, in case there are some odd reasons why this might be acceptable, I will also mention them, if any. Let's see where we get.