Today I Learned
Import in Python
As noted in Structuring Your Project of Python Guide, import
in python is rather tricky.
The style
grabs everything in neuosc
and put them in the global namespace which is more likely to override existing functions in global namespace.
A better way is to import the exact function we need.
Other good import methods are
or