Thank you. I made the update that you suggested but there is still a problem. Here is the current contents of wsgi.py
import os
import sys
path = '/home/NewAmericanModelBond/tutorial-project/mysite'
if path not in sys.path:
sys.path.append(path)
os.environ['DJANGO_SETTINGS_MODULE'] = 'mysite.settings'
from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()
Can you tell me where the system is looking for mysite.settings? Here is the contents of my site's error.log
2021-05-17 17:04:54,745: Error running WSGI application
2021-05-17 17:04:54,752: ModuleNotFoundError: No module named 'mysite.settings'
2021-05-17 17:04:54,752: File "/var/www/newamericanmodelbond_pythonanywhere_com_wsgi.py", line 16, in <module>
2021-05-17 17:04:54,752: application = get_wsgi_application()
2021-05-17 17:04:54,752:
2021-05-17 17:04:54,752: File "/home/NewAmericanModelBond/env/lib/python3.6/site-packages/django/core/wsgi.py", line 12, in get_wsgi_application
2021-05-17 17:04:54,752: django.setup(set_prefix=False)
2021-05-17 17:04:54,752:
2021-05-17 17:04:54,752: File "/home/NewAmericanModelBond/env/lib/python3.6/site-packages/django/__init__.py", line 19, in setup
2021-05-17 17:04:54,752: configure_logging(settings.LOGGING_CONFIG, settings.LOGGING)
2021-05-17 17:04:54,753:
2021-05-17 17:04:54,753: File "/home/NewAmericanModelBond/env/lib/python3.6/site-packages/django/conf/__init__.py", line 82, in __getattr__
2021-05-17 17:04:54,753: self._setup(name)
2021-05-17 17:04:54,753:
2021-05-17 17:04:54,753: File "/home/NewAmericanModelBond/env/lib/python3.6/site-packages/django/conf/__init__.py", line 69, in _setup
2021-05-17 17:04:54,753: self._wrapped = Settings(settings_module)
2021-05-17 17:04:54,753:
2021-05-17 17:04:54,754: File "/home/NewAmericanModelBond/env/lib/python3.6/site-packages/django/conf/__init__.py", line 170, in __init__
2021-05-17 17:04:54,754: mod = importlib.import_module(self.SETTINGS_MODULE)