module not found no module named

I have been trying to connect to mongodb compass using django pymongo and mongodb. My imports are not working correct I get an error as below

File “C:\Users\botan\AppData\Local\Programs\Python\Python312\Lib\site-packages\django\apps\registry.py”, line 116, in populate
app_config.import_models()
File “C:\Users\botan\AppData\Local\Programs\Python\Python312\Lib\site-packages\django\apps\config.py”, line 269, in import_models
self.models_module = import_module(models_module_name)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File “C:\Users\botan\AppData\Local\Programs\Python\Python312\Lib\importlib_init_.py”, line 90, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File “”, line 1387, in _gcd_import
File “”, line 1360, in _find_and_load
File “”, line 1331, in _find_and_load_unlocked
File “”, line 935, in _load_unlocked
File “”, line 995, in exec_module
File “”, line 488, in _call_with_frames_removed
File “C:\Users\botan\Desktop\django-cards\demo\myapp\models.py”, line 2, in
from db_con import db
ModuleNotFoundError: No module named ‘db_con’

both files are in the same directory and from what I understand this is one of the main causes of this error. I have googled all day but cannot find the answer for the error?