I have a django project with srtucture like this:
main_project
----main_project
<------libs
<<---------exceptions.py
----project_a
----project_b
In the views.py of project_a I am trying to import a folder named libs of main_project and a file from libs  called exceptions.py, but I am getting the error
ImportError: No module named libs.exceptions
My code is :
from main_project.libs.exceptions import (
    APIException400,
    APIException405,
    APIException403,
    exception_handler_dispatcher,
)
Can someone tell me what am I missing here? With reference to https://stackoverflow.com/a/31407131/5080347 answer I even tried :
from main_project.main_project.libs.exceptions import (
        APIException400,
        APIException405,
        APIException403,
        exception_handler_dispatcher,
    )
but doesn't work.
 
     
     
    