Using from xxx import * makes it difficult to determine what has been defined by the import statement. This may hide errors and introduce unexpected dependencies.

Use explicit imports. For example from xxx import a, b, c

  • Python Language Reference: The import statement.
  • Python PEP-8: Imports.