Problem when trying to import data from a django directory

I started a application in django with discord.py

My modules for discord.py is in same directory where is django application started.

Looks like this:

enter image description here

My problem is when I want to import a botlogic model, get this error

ModuleNotFoundError: No module named 'bot.botlogic'; 'bot' is not a package

I've tried every possible way ... and I'm still getting this error How should I proceed?

Back to Top