Started learning Python recently and had a problem importing a model into django. I am trying to import a product model into Telegram bot handler but an error occurs.
Below is how my directory structure looks like: structure.png
Code:
from jangoMiniShop.products.models import Product
Error:
ModuleNotFoundError: No module named 'jangoMiniShop'
Code:
from ..products.models import Product
Error:
ImportError: attempted relative import with no known parent package