Please I need some help with this Exception, it pops up when I tried runserver

Traceback (most recent call last):
File “C:\Python311\Lib\site-packages\django\core\servers\basehttp.py”, line 47, in get_internal_wsgi_application
return import_string(app_path)
^^^^^^^^^^^^^^^^^^^^^^^
File “C:\Python311\Lib\site-packages\django\utils\module_loading.py”, line 30, in import_string
return cached_import(module_path, class_name)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File “C:\Python311\Lib\site-packages\django\utils\module_loading.py”, line 15, in cached_import
module = import_module(module_path)
^^^^^^^^^^^^^^^^^^^^^^^^^^
File “C:\Python311\Lib\importlib_init_.py”, line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File “”, line 1206, in _gcd_import
File “”, line 1178, in _find_and_load
File “”, line 1149, in _find_and_load_unlocked
File “”, line 690, in _load_unlocked
File “”, line 940, in exec_module
File “”, line 241, in call_with_frames_removed
File “C:\Users\ibeev\documents\wunnimi_pms\wunnimi_PMS\wsgi.py”, line 16, in
application = get_wsgi_application()
^^^^^^^^^^^^^^^^^^^^^^
File “C:\Python311\Lib\site-packages\django\core\wsgi.py”, line 13, in get_wsgi_application
return WSGIHandler()
^^^^^^^^^^^^^
File “C:\Python311\Lib\site-packages\django\core\handlers\wsgi.py”, line 125, in init
self.load_middleware()
File “C:\Python311\Lib\site-packages\django\core\handlers\base.py”, line 40, in load_middleware
middleware = import_string(middleware_path)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File “C:\Python311\Lib\site-packages\django\utils\module_loading.py”, line 30, in import_string
return cached_import(module_path, class_name)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File “C:\Python311\Lib\site-packages\django\utils\module_loading.py”, line 15, in cached_import
module = import_module(module_path)
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Python311\Lib\importlib_init
.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File “”, line 1206, in _gcd_import
File “”, line 1178, in _find_and_load
File “”, line 1128, in _find_and_load_unlocked
File “”, line 241, in _call_with_frames_removed
File “”, line 1206, in _gcd_import
File “”, line 1178, in _find_and_load
File “”, line 1142, in _find_and_load_unlocked
ModuleNotFoundError: No module named ‘wunnimai_app’

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File “C:\Python311\Lib\threading.py”, line 1038, in _bootstrap_inner
self.run()
File “C:\Python311\Lib\threading.py”, line 975, in run
self._target(*self._args, **self._kwargs)
File “C:\Python311\Lib\site-packages\django\utils\autoreload.py”, line 64, in wrapper
fn(*args, **kwargs)
File “C:\Python311\Lib\site-packages\django\core\management\commands\runserver.py”, line 157, in inner_run
handler = self.get_handler(*args, **options)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File “C:\Python311\Lib\site-packages\django\contrib\staticfiles\management\commands\runserver.py”, line 31, in get_handler
handler = super().get_handler(*args, **options)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File “C:\Python311\Lib\site-packages\django\core\management\commands\runserver.py”, line 78, in get_handler
return get_internal_wsgi_application()
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File “C:\Python311\Lib\site-packages\django\core\servers\basehttp.py”, line 49, in get_internal_wsgi_application
raise ImproperlyConfigured(
django.core.exceptions.ImproperlyConfigured: WSGI application ‘wunnimi_PMS.wsgi.application’ could not be loaded; Error importing module.

What do you think this error is telling you?

Side note: When posting code, templates, tracebacks, etc here, enclose them between lines of three backtick - ` characters. This means you’ll have a line of ```, then your code (or traceback, or template, etc), then another line of ```. This forces the forum software to keep your code (etc) properly formatted. This is particularly critical with Python, but very helpful in the other cases as well.

Thank you Mr. Ken I am actually new here and this info is vey important to me, I appreciate