__init__.py can’t find local modules
Put the following codes in the __init__.py inside the Animals directory. Python 3.x : from .Mammals import Mammals from .Birds import Birds On 2.x: from __future__ import absolute_import from .Mammals import Mammals from .Birds import Birds Explanation: It can’t find the module because it doesn’t know what directory to search to find the files Mammals … Read more