i have searched across stackoverflow and i havent been able to come up with an answer.
I have this directory:
project/
util/
utility.py
models.py
So here is a description of what each file does
models.py
:
contains a list of my django models
utility.py:
from ..models import *
[...]
May i know why i keep getting this error:
ValueError: attempted relative import beyond top-level package
?
And how can i solve this?