It is recommended to not to use import * in Python.
import *
Can anyone please share the reason for that, so that I can avoid it doing next time?
http://docs.python.org/tutorial/modules.html
Note that in general the practice of importing * from a module or package is frowned upon, since it often causes poorly readable code.
*