Forums

This website is hosted by PythonAnywhere, an online hosting environment. Something went wrong while trying to load it; please try again later.

Hey!

We've got the following error message, but we didn't have this the last time we tried to launch our page. I'm fairly confident we've changed no code on our end, and additionally, the error message is in a format unlike what we usually get when we have a code error:

--

Something went wrong :-(

This website is hosted by PythonAnywhere, an online hosting environment. Something went wrong while trying to load it; please try again later.

If this is your PythonAnywhere-hosted site, there may be a bug in your code. Check your site's server and error logs for any messages — you can view them from the Web tab inside PythonAnywhere.

You'll find a series of tips on how to debug problems, and solutions to common issues on our Help pages

If you get completely stuck, then drop us a line at support@pythonanywhere.com, in the forums, or using the "Send feedback" link on the site, quoting the error code below.

Error code: Unhandled Exception

Take a look at the error log (linked from the "Web" tab). You should be able to see what the cause of the problem is there. The latest errors are at the bottom of the file.

Thanks! Alright, so an issue we're having is that everything works when our server files are in the main directory, but if we move our server files into a 'server' directory, everything errors. Is there a way to update where the server files are being read from?

Absolutely -- the path is set up in the WSGI file (link on the "Web" tab).

Thank you again so much! Any idea why our site could be launching, then when we log into the /admin portal, we get:

OperationalError at /admin/login/ no such table: auth_user

Additionally, when we pull something, why it would be different on pythonanywhere than it is on github? when we do the ls command, additionally directories and files exist locally that aren't in the github that we're pulling from

Any idea why our site could be launching, then when we log into the /admin portal, we get:

OperationalError at /admin/login/ no such table: auth_user

That sounds like you haven't synchronised your database yet, so there are no tables in it.

Additionally, when we pull something, why it would be different on pythonanywhere than it is on github? when we do the ls command, additionally directories and files exist locally that aren't in the github that we're pulling from

I'm not sure I understand -- are there somehow directories being added into the code that's pulled from the repository?

Hi! I am new to both Django and Python. I have followed the Django Girls tutorial to create my first Django apps. When attempting to load the website, we get the following error message:

Something went wrong :-(

This website is hosted by PythonAnywhere, an online hosting environment. Something went wrong while trying to load it; please try again later.

If this is your PythonAnywhere-hosted site, there may be a bug in your code. Check your site's server and error logs for any messages — you can view them from the Web tab inside PythonAnywhere.

You'll find a series of tips on how to debug problems, and solutions to common issues on our Help pages

If you get completely stuck, then drop us a line at support@pythonanywhere.com, in the forums, or using the "Send feedback" link on the site, quoting the error code below.

Error code: Unhandled Exception

The error log is the following: 2016-04-08 08:58:35,580 :Traceback (most recent call last): 2016-04-08 08:58:35,580 : File "/usr/local/lib/python3.4/dist-packages/django/utils/module_loading.py", line 21, in import_by_path 2016-04-08 08:58:35,580 : module = import_module(module_path)

2016-04-08 08:58:35,580 : File "/usr/lib/python3.4/importlib/init.py", line 109, in import_module

2016-04-08 08:58:35,581 : return _bootstrap._gcd_import(name[level:], package, level)

2016-04-08 08:58:35,581 : File "<frozen importlib._bootstrap>", line 2254, in _gcd_import

2016-04-08 08:58:35,581 : File "<frozen importlib._bootstrap>", line 2237, in _find_and_load

2016-04-08 08:58:35,581 : File "<frozen importlib._bootstrap>", line 2224, in _find_and_load_unlocked

2016-04-08 08:58:35,582 :ImportError: No module named 'django.middleware.security' 2016-04-08 08:58:35,582 :

2016-04-08 08:58:35,582 :During handling of the above exception, another exception occurred: 2016-04-08 08:58:35,582 :

2016-04-08 08:58:35,582 :Traceback (most recent call last):

2016-04-08 08:58:35,582 : File "/bin/user_wsgi_wrapper.py", line 138, in call

2016-04-08 08:58:35,582 : self.error_log_file.logger.exception("Error running WSGI application")

2016-04-08 08:58:35,582 : File "/usr/lib/python3.4/logging/init.py", line 1310, in exception 2016-04-08 08:58:35,583 : self.error(msg, args, *kwargs)

2016-04-08 08:58:35,583 : File "/usr/lib/python3.4/logging/init.py", line 1303, in error 2016-04-08 08:58:35,584 : self._log(ERROR, msg, args, **kwargs)

2016-04-08 08:58:35,584 : File "/usr/lib/python3.4/logging/init.py", line 1409, in _log 2016-04-08 08:58:35,585 : self.handle(record)

2016-04-08 08:58:35,585 : File "/usr/lib/python3.4/logging/init.py", line 1418, in handle

2016-04-08 08:58:35,585 : if (not self.disabled) and self.filter(record): 2016-04-08 08:58:35,585 : File "/usr/lib/python3.4/logging/init.py", line 706, in filter

2016-04-08 08:58:35,586 : for f in self.filters: 2016-04-08 08:58:35,586 : File "/bin/user_wsgi_wrapper.py", line 130, in call 2016-04-08 08:58:35,586 : app_iterator = self.app(environ, start_response) 2016-04-08 08:58:35,586 : File "/usr/local/lib/python3.4/dist-packages/django/contrib/staticfiles/handlers.py", line 67, in call

2016-04-08 08:58:35,587 : return self.application(environ, start_response)

2016-04-08 08:58:35,587 : File "/usr/local/lib/python3.4/dist-packages/django/core/handlers/wsgi.py", line 187, in call

2016-04-08 08:58:35,587 : self.load_middleware()

2016-04-08 08:58:35,587 : File "/usr/local/lib/python3.4/dist-packages/django/core/handlers/base.py", line 45, in load_middleware

2016-04-08 08:58:35,587 : mw_class = import_by_path(middleware_path)

2016-04-08 08:58:35,587 : File "/usr/local/lib/python3.4/dist-packages/django/utils/module_loading.py", line 26, in import_by_path

2016-04-08 08:58:35,588 : sys.exc_info()[2])

2016-04-08 08:58:35,588 : File "/usr/local/lib/python3.4/dist-packages/django/utils/six.py", line 549, in reraise

2016-04-08 08:58:35,588 : raise value.with_traceback(tb)

2016-04-08 08:58:35,588 : File "/usr/local/lib/python3.4/dist-packages/django/utils/module_loading.py", line 21, in import_by_path 2016-04-08 08:58:35,588 : module = import_module(module_path)

2016-04-08 08:58:35,588 : File "/usr/lib/python3.4/importlib/init.py", line 109, in import_module

2016-04-08 08:58:35,589 : return _bootstrap._gcd_import(name[level:], package, level)

2016-04-08 08:58:35,589 : File "<frozen importlib._bootstrap>", line 2254, in _gcd_import

2016-04-08 08:58:35,589 : File "<frozen importlib._bootstrap>", line 2237, in _find_and_load

2016-04-08 08:58:35,590 : File "<frozen importlib._bootstrap>", line 2224, in _find_and_load_unlocked

2016-04-08 08:58:35,590 :django.core.exceptions.ImproperlyConfigured: Error importing module django.middleware.security: "No module named 'django.middleware.security'"

In addition, there is an error with regard to the virtualenv. It indicated that it has not been created; however, when I look in the directory, the virtual is there.

The error, with the virtualenv is: "There is a problem with your virtualenv setup. Look at the virtualenv section below for details. "

This is what is below:

home/macilecenter/my-first-blog/myvenv/

Warning: No virtualenv detected at this path. Do you need to create it?

Would appreciate your help. Thank you

Hello!

I created the virtualenv and this resolved the error I was receiving with regard to the virtualenv when attempting to load my website. It seems that there was a conflict with the python versions. The first virtualenv created with using python2.7 and the django app is using python3.4.

However, while the "Warning" No virtualenv detected at this path." was removed, I am still unable to deploy my app. I get this:

It worked!

Congratulations on your first Django-powered page.

Of course, you haven't actually done any work yet. Next, start your first app by running python manage.py startapp [app_label].

You're seeing this message because you have DEBUG = True in your Django settings file and you haven't configured any URLs. Get to work!

My app is already in the server (the directory and files are there). How can I get it to display properly?

Thanks

Hi there,

Good job on getting to this stage! :D

I took a quick look at your file structure. Seems like you are already running your app. However, you do not seem to have any urls.py files. (there should be one in both your blog folder and your mysite folder (where your settings.py is)

You need to set that up in order for django to be able to know where to send the url requests.

Hi!

Thanks for the encouragement and for taking the time to review my work. I will continue to the next step with the hope that things will work better henceforth.

Very grateful for this community.

Something went wrong :-( This website is hosted by PythonAnywhere, an online hosting environment. Something went wrong while trying to load it; please try again later.

Debugging tips If this is your PythonAnywhere-hosted site, and you just reloaded it, then the problem might simply be that it hasn't loaded up yet. Try refreshing this page and see if this message disappears.

If you keep getting this message, you should check your site's server and error logs for any messages — you can view them from the Web tab inside PythonAnywhere.

If there's nothing in the logs, and you're sure your site is OK, then it might be a problem on our side. Drop us a line at support@pythonanywhere.com, in the forums, or using the "Send feedback" link on the site, quoting the error code below.

Error code: 502-backend

I don't see that error when I visit your site -- did you work out what the problem was?

I'm having similar issue here, can you help me check it out

We need more details to help you.

Something went wrong :-( This website is hosted by PythonAnywhere, an online hosting environment. Something went wrong while trying to load it; please try again later. this is the error im getting http://yashas24.pythonanywhere.com/ this is the error link plz give a solution and help it working

If you get an error message, you should look at your website's error log. There's a link to it on the "Web" page inside PythonAnywhere, and the most recent error message will be at the bottom of the file.

sir this is the error log Error running WSGI application 2021-05-18 08:29:56,796: ImportError: No module named 'ramasite.settings' 2021-05-18 08:29:56,797: File "/var/www/yashas24_pythonanywhere_com_wsgi.py", line 30, in <module> 2021-05-18 08:29:56,797: application = get_wsgi_application() 2021-05-18 08:29:56,797: 2021-05-18 08:29:56,797: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/core/wsgi.py", line 12, in get_wsgi_application 2021-05-18 08:29:56,797: django.setup(set_prefix=False) 2021-05-18 08:29:56,797: 2021-05-18 08:29:56,797: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/init.py", line 19, in setup 2021-05-18 08:29:56,797: configure_logging(settings.LOGGING_CONFIG, settings.LOGGING) 2021-05-18 08:29:56,798: 2021-05-18 08:29:56,798: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 79, in getattr 2021-05-18 08:29:56,798: self._setup(name) 2021-05-18 08:29:56,798: 2021-05-18 08:29:56,798: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 66, in _setup 2021-05-18 08:29:56,798: self._wrapped = Settings(settings_module) 2021-05-18 08:29:56,798: 2021-05-18 08:29:56,798: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 157, in init 2021-05-18 08:29:56,798: mod = importlib.import_module(self.SETTINGS_MODULE) 2021-05-18 08:29:56,798: ******* 2021-05-18 08:29:56,798: If you're seeing an import error and don't know why, 2021-05-18 08:29:56,798: we have a dedicated help page to help you debug: 2021-05-18 08:29:56,799: https://help.pythonanywhere.com/pages/DebuggingImportError/ 2021-05-18 08:29:56,799: ******* 2021-05-18 08:30:16,109: Error running WSGI application 2021-05-18 08:30:16,112: ImportError: No module named 'ramasite.settings' 2021-05-18 08:30:16,112: File "/var/www/yashas24_pythonanywhere_com_wsgi.py", line 30, in <module> 2021-05-18 08:30:16,112: application = get_wsgi_application() 2021-05-18 08:30:16,112: 2021-05-18 08:30:16,112: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/core/wsgi.py", line 12, in get_wsgi_application 2021-05-18 08:30:16,112: django.setup(set_prefix=False) 2021-05-18 08:30:16,112: 2021-05-18 08:30:16,113: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/init.py", line 19, in setup 2021-05-18 08:30:16,113: configure_logging(settings.LOGGING_CONFIG, settings.LOGGING) 2021-05-18 08:30:16,113: 2021-05-18 08:30:16,113: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 79, in getattr 2021-05-18 08:30:16,113: self._setup(name) 2021-05-18 08:30:16,113: 2021-05-18 08:30:16,113: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 66, in _setup 2021-05-18 08:30:16,113: self._wrapped = Settings(settings_module) 2021-05-18 08:30:16,113: 2021-05-18 08:30:16,113: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 157, in init 2021-05-18 08:30:16,113: mod = importlib.import_module(self.SETTINGS_MODULE) 2021-05-18 08:30:16,113: ******* 2021-05-18 08:30:16,114: If you're seeing an import error and don't know why, 2021-05-18 08:30:16,114: we have a dedicated help page to help you debug: 2021-05-18 08:30:16,114: https://help.pythonanywhere.com/pages/DebuggingImportError/ 2021-05-18 08:30:16,114: ******* 2021-05-18 08:30:18,610: Error running WSGI application 2021-05-18 08:30:18,610: ImportError: No module named 'ramasite.settings' 2021-05-18 08:30:18,610: File "/var/www/yashas24_pythonanywhere_com_wsgi.py", line 30, in <module> 2021-05-18 08:30:18,610: application = get_wsgi_application() 2021-05-18 08:30:18,610: 2021-05-18 08:30:18,611: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/core/wsgi.py", line 12, in get_wsgi_application 2021-05-18 08:30:18,611: django.setup(set_prefix=False) 2021-05-18 08:30:18,611: 2021-05-18 08:30:18,611: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/init.py", line 19, in setup 2021-05-18 08:30:18,611: configure_logging(settings.LOGGING_CONFIG, settings.LOGGING) 2021-05-18 08:30:18,611: 2021-05-18 08:30:18,611: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 79, in getattr 2021-05-18 08:30:18,611: self._setup(name) 2021-05-18 08:30:18,611: 2021-05-18 08:30:18,611: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 66, in _setup 2021-05-18 08:30:18,611: self._wrapped = Settings(settings_module) 2021-05-18 08:30:18,611: 2021-05-18 08:30:18,612: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 157, in init 2021-05-18 08:30:18,612: mod = importlib.import_module(self.SETTINGS_MODULE) 2021-05-18 08:30:18,612: ******* 2021-05-18 08:30:18,612: If you're seeing an import error and don't know why, 2021-05-18 08:30:18,612: we have a dedicated help page to help you debug: 2021-05-18 08:30:18,612: https://help.pythonanywhere.com/pages/DebuggingImportError/ 2021-05-18 08:30:18,612: ******* 2021-05-18 08:30:47,460: Error running WSGI application 2021-05-18 08:30:47,467: ImportError: No module named 'ramasite.settings' 2021-05-18 08:30:47,467: File "/var/www/yashas24_pythonanywhere_com_wsgi.py", line 30, in <module> 2021-05-18 08:30:47,467: application = get_wsgi_application() 2021-05-18 08:30:47,467: 2021-05-18 08:30:47,468: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/core/wsgi.py", line 12, in get_wsgi_application 2021-05-18 08:30:47,468: django.setup(set_prefix=False) 2021-05-18 08:30:47,468: 2021-05-18 08:30:47,468: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/init.py", line 19, in setup 2021-05-18 08:30:47,468: configure_logging(settings.LOGGING_CONFIG, settings.LOGGING) 2021-05-18 08:30:47,468: 2021-05-18 08:30:47,469: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 79, in getattr 2021-05-18 08:30:47,469: self._setup(name) 2021-05-18 08:30:47,469: 2021-05-18 08:30:47,469: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 66, in _setup 2021-05-18 08:30:47,469: self._wrapped = Settings(settings_module) 2021-05-18 08:30:47,469: 2021-05-18 08:30:47,470: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 157, in init 2021-05-18 08:30:47,470: mod = importlib.import_module(self.SETTINGS_MODULE) 2021-05-18 08:30:47,470: ******* 2021-05-18 08:30:47,470: If you're seeing an import error and don't know why, 2021-05-18 08:30:47,470: we have a dedicated help page to help you debug: 2021-05-18 08:30:47,470: https://help.pythonanywhere.com/pages/DebuggingImportError/ 2021-05-18 08:30:47,470: ******* 2021-05-18 08:30:48,391: Error running WSGI application 2021-05-18 08:30:48,391: ImportError: No module named 'ramasite.settings' 2021-05-18 08:30:48,391: File "/var/www/yashas24_pythonanywhere_com_wsgi.py", line 30, in <module> 2021-05-18 08:30:48,392: application = get_wsgi_application() 2021-05-18 08:30:48,392: 2021-05-18 08:30:48,392: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/core/wsgi.py", line 12, in get_wsgi_application 2021-05-18 08:30:48,392: django.setup(set_prefix=False) 2021-05-18 08:30:48,392: 2021-05-18 08:30:48,392: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/init.py", line 19, in setup 2021-05-18 08:30:48,392: configure_logging(settings.LOGGING_CONFIG, settings.LOGGING) 2021-05-18 08:30:48,392: 2021-05-18 08:30:48,392: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 79, in getattr 2021-05-18 08:30:48,392: self._setup(name) 2021-05-18 08:30:48,392: 2021-05-18 08:30:48,392: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 66, in _setup 2021-05-18 08:30:48,393: self._wrapped = Settings(settings_module) 2021-05-18 08:30:48,393: 2021-05-18 08:30:48,393: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 157, in init 2021-05-18 08:30:48,393: mod = importlib.import_module(self.SETTINGS_MODULE) 2021-05-18 08:30:48,393: ******* 2021-05-18 08:30:48,393: If you're seeing an import error and don't know why, 2021-05-18 08:30:48,393: we have a dedicated help page to help you debug: 2021-05-18 08:30:48,393: https://help.pythonanywhere.com/pages/DebuggingImportError/ 2021-05-18 08:30:48,393: ******* 2021-05-18 08:34:09,326: Error running WSGI application 2021-05-18 08:34:09,333: ImportError: No module named 'ramasite.settings' 2021-05-18 08:34:09,333: File "/var/www/yashas24_pythonanywhere_com_wsgi.py", line 30, in <module> 2021-05-18 08:34:09,334: application = get_wsgi_application() 2021-05-18 08:34:09,334: 2021-05-18 08:34:09,334: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/core/wsgi.py", line 12, in get_wsgi_application 2021-05-18 08:34:09,334: django.setup(set_prefix=False) 2021-05-18 08:34:09,335: 2021-05-18 08:34:09,335: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/init.py", line 19, in setup 2021-05-18 08:34:09,335: configure_logging(settings.LOGGING_CONFIG, settings.LOGGING) 2021-05-18 08:34:09,335: 2021-05-18 08:34:09,335: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 79, in getattr 2021-05-18 08:34:09,336: self._setup(name) 2021-05-18 08:34:09,336: 2021-05-18 08:34:09,336: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 66, in _setup 2021-05-18 08:34:09,336: self._wrapped = Settings(settings_module) 2021-05-18 08:34:09,336: 2021-05-18 08:34:09,337: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 157, in init 2021-05-18 08:34:09,337: mod = importlib.import_module(self.SETTINGS_MODULE) 2021-05-18 08:34:09,337: ******* 2021-05-18 08:34:09,337: If you're seeing an import error and don't know why, 2021-05-18 08:34:09,337: we have a dedicated help page to help you debug: 2021-05-18 08:34:09,338: https://help.pythonanywhere.com/pages/DebuggingImportError/ 2021-05-18 08:34:09,338: ******* 2021-05-18 08:34:11,028: Error running WSGI application 2021-05-18 08:34:11,028: ImportError: No module named 'ramasite.settings' 2021-05-18 08:34:11,028: File "/var/www/yashas24_pythonanywhere_com_wsgi.py", line 30, in <module> 2021-05-18 08:34:11,029: application = get_wsgi_application() 2021-05-18 08:34:11,029: 2021-05-18 08:34:11,029: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/core/wsgi.py", line 12, in get_wsgi_application 2021-05-18 08:34:11,029: django.setup(set_prefix=False) 2021-05-18 08:34:11,029: 2021-05-18 08:34:11,029: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/init.py", line 19, in setup 2021-05-18 08:34:11,029: configure_logging(settings.LOGGING_CONFIG, settings.LOGGING) 2021-05-18 08:34:11,029: 2021-05-18 08:34:11,029: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 79, in getattr 2021-05-18 08:34:11,029: self._setup(name) 2021-05-18 08:34:11,029: 2021-05-18 08:34:11,029: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 66, in _setup 2021-05-18 08:34:11,030: self._wrapped = Settings(settings_module) 2021-05-18 08:34:11,030: 2021-05-18 08:34:11,030: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 157, in init 2021-05-18 08:34:11,030: mod = importlib.import_module(self.SETTINGS_MODULE) 2021-05-18 08:34:11,030: ******* 2021-05-18 08:34:11,030: If you're seeing an import error and don't know why, 2021-05-18 08:34:11,030: we have a dedicated help page to help you debug: 2021-05-18 08:34:11,030: https://help.pythonanywhere.com/pages/DebuggingImportError/ 2021-05-18 08:34:11,030: ******* 2021-05-18 08:34:12,699: Error running WSGI application 2021-05-18 08:34:12,699: ImportError: No module named 'ramasite.settings' 2021-05-18 08:34:12,699: File "/var/www/yashas24_pythonanywhere_com_wsgi.py", line 30, in <module> 2021-05-18 08:34:12,699: application = get_wsgi_application() 2021-05-18 08:34:12,699: 2021-05-18 08:34:12,699: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/core/wsgi.py", line 12, in get_wsgi_application 2021-05-18 08:34:12,700: django.setup(set_prefix=False) 2021-05-18 08:34:12,700: 2021-05-18 08:34:12,700: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/init.py", line 19, in setup 2021-05-18 08:34:12,700: configure_logging(settings.LOGGING_CONFIG, settings.LOGGING) 2021-05-18 08:34:12,700: 2021-05-18 08:34:12,700: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 79, in getattr 2021-05-18 08:34:12,700: self._setup(name) 2021-05-18 08:34:12,700: 2021-05-18 08:34:12,700: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 66, in _setup 2021-05-18 08:34:12,700: self._wrapped = Settings(settings_module) 2021-05-18 08:34:12,701: 2021-05-18 08:34:12,701: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 157, in init 2021-05-18 08:34:12,701: mod = importlib.import_module(self.SETTINGS_MODULE) 2021-05-18 08:34:12,701: ******* 2021-05-18 08:34:12,701: If you're seeing an import error and don't know why, 2021-05-18 08:34:12,701: we have a dedicated help page to help you debug: 2021-05-18 08:34:12,701: https://help.pythonanywhere.com/pages/DebuggingImportError/ 2021-05-18 08:34:12,701: ******* 2021-05-18 08:34:13,886: Error running WSGI application 2021-05-18 08:34:13,886: ImportError: No module named 'ramasite.settings' 2021-05-18 08:34:13,886: File "/var/www/yashas24_pythonanywhere_com_wsgi.py", line 30, in <module> 2021-05-18 08:34:13,886: application = get_wsgi_application() 2021-05-18 08:34:13,887: 2021-05-18 08:34:13,887: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/core/wsgi.py", line 12, in get_wsgi_application 2021-05-18 08:34:13,887: django.setup(set_prefix=False) 2021-05-18 08:34:13,887: 2021-05-18 08:34:13,887: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/init.py", line 19, in setup 2021-05-18 08:34:13,887: configure_logging(settings.LOGGING_CONFIG, settings.LOGGING) 2021-05-18 08:34:13,887: 2021-05-18 08:34:13,887: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 79, in getattr 2021-05-18 08:34:13,887: self._setup(name) 2021-05-18 08:34:13,887: 2021-05-18 08:34:13,887: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 66, in _setup 2021-05-18 08:34:13,887: self._wrapped = Settings(settings_module) 2021-05-18 08:34:13,887: 2021-05-18 08:34:13,888: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 157, in init 2021-05-18 08:34:13,888: mod = importlib.import_module(self.SETTINGS_MODULE) 2021-05-18 08:34:13,888: ******* 2021-05-18 08:34:13,888: If you're seeing an import error and don't know why, 2021-05-18 08:34:13,888: we have a dedicated help page to help you debug: 2021-05-18 08:34:13,888: https://help.pythonanywhere.com/pages/DebuggingImportError/ 2021-05-18 08:34:13,888: ******* 2021-05-18 08:34:27,724: Error running WSGI application 2021-05-18 08:34:27,731: ImportError: No module named 'ramasite.settings' 2021-05-18 08:34:27,731: File "/var/www/yashas24_pythonanywhere_com_wsgi.py", line 30, in <module> 2021-05-18 08:34:27,731: application = get_wsgi_application() 2021-05-18 08:34:27,731: 2021-05-18 08:34:27,732: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/core/wsgi.py", line 12, in get_wsgi_application 2021-05-18 08:34:27,732: django.setup(set_prefix=False) 2021-05-18 08:34:27,732: 2021-05-18 08:34:27,732: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/init.py", line 19, in setup 2021-05-18 08:34:27,732: configure_logging(settings.LOGGING_CONFIG, settings.LOGGING) 2021-05-18 08:34:27,732: 2021-05-18 08:34:27,733: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 79, in getattr 2021-05-18 08:34:27,733: self._setup(name) 2021-05-18 08:34:27,733: 2021-05-18 08:34:27,733: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 66, in _setup 2021-05-18 08:34:27,733: self._wrapped = Settings(settings_module) 2021-05-18 08:34:27,733: 2021-05-18 08:34:27,733: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 157, in init 2021-05-18 08:34:27,734: mod = importlib.import_module(self.SETTINGS_MODULE) 2021-05-18 08:34:27,734: ******* 2021-05-18 08:34:27,734: If you're seeing an import error and don't know why, 2021-05-18 08:34:27,734: we have a dedicated help page to help you debug: 2021-05-18 08:34:27,734: https://help.pythonanywhere.com/pages/DebuggingImportError/ 2021-05-18 08:34:27,734: ******* 2021-05-18 08:36:00,612: Error running WSGI application 2021-05-18 08:36:00,618: ImportError: No module named 'ramasite.settings' 2021-05-18 08:36:00,618: File "/var/www/yashas24_pythonanywhere_com_wsgi.py", line 30, in <module> 2021-05-18 08:36:00,618: application = get_wsgi_application() 2021-05-18 08:36:00,618: 2021-05-18 08:36:00,619: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/core/wsgi.py", line 12, in get_wsgi_application 2021-05-18 08:36:00,619: django.setup(set_prefix=False) 2021-05-18 08:36:00,619: 2021-05-18 08:36:00,619: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/init.py", line 19, in setup 2021-05-18 08:36:00,619: configure_logging(settings.LOGGING_CONFIG, settings.LOGGING) 2021-05-18 08:36:00,619: 2021-05-18 08:36:00,619: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 79, in getattr 2021-05-18 08:36:00,619: self._setup(name) 2021-05-18 08:36:00,619: 2021-05-18 08:36:00,619: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 66, in _setup 2021-05-18 08:36:00,619: self._wrapped = Settings(settings_module) 2021-05-18 08:36:00,619: 2021-05-18 08:36:00,620: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 157, in init 2021-05-18 08:36:00,620: mod = importlib.import_module(self.SETTINGS_MODULE) 2021-05-18 08:36:00,620: ******* 2021-05-18 08:36:00,620: If you're seeing an import error and don't know why, 2021-05-18 08:36:00,620: we have a dedicated help page to help you debug: 2021-05-18 08:36:00,620: https://help.pythonanywhere.com/pages/DebuggingImportError/ 2021-05-18 08:36:00,620: ******* 2021-05-18 08:38:37,123: Error running WSGI application 2021-05-18 08:38:37,128: ImportError: No module named 'ramasite.settings' 2021-05-18 08:38:37,128: File "/var/www/yashas24_pythonanywhere_com_wsgi.py", line 30, in <module> 2021-05-18 08:38:37,128: application = get_wsgi_application() 2021-05-18 08:38:37,128: 2021-05-18 08:38:37,129: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/core/wsgi.py", line 12, in get_wsgi_application 2021-05-18 08:38:37,129: django.setup(set_prefix=False) 2021-05-18 08:38:37,129: 2021-05-18 08:38:37,129: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/init.py", line 19, in setup 2021-05-18 08:38:37,129: configure_logging(settings.LOGGING_CONFIG, settings.LOGGING) 2021-05-18 08:38:37,129: 2021-05-18 08:38:37,129: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 79, in getattr 2021-05-18 08:38:37,129: self._setup(name) 2021-05-18 08:38:37,129: 2021-05-18 08:38:37,129: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 66, in _setup 2021-05-18 08:38:37,129: self._wrapped = Settings(settings_module) 2021-05-18 08:38:37,130: 2021-05-18 08:38:37,130: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 157, in init 2021-05-18 08:38:37,130: mod = importlib.import_module(self.SETTINGS_MODULE) 2021-05-18 08:38:37,130: ******* 2021-05-18 08:38:37,130: If you're seeing an import error and don't know why, 2021-05-18 08:38:37,130: we have a dedicated help page to help you debug: 2021-05-18 08:38:37,130: https://help.pythonanywhere.com/pages/DebuggingImportError/ 2021-05-18 08:38:37,130: ******* 2021-05-18 08:39:11,843: Error running WSGI application 2021-05-18 08:39:11,844: ImportError: No module named 'ramasite.settings' 2021-05-18 08:39:11,844: File "/var/www/yashas24_pythonanywhere_com_wsgi.py", line 30, in <module> 2021-05-18 08:39:11,844: application = get_wsgi_application() 2021-05-18 08:39:11,844: 2021-05-18 08:39:11,844: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/core/wsgi.py", line 12, in get_wsgi_application 2021-05-18 08:39:11,844: django.setup(set_prefix=False) 2021-05-18 08:39:11,845: 2021-05-18 08:39:11,845: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/init.py", line 19, in setup 2021-05-18 08:39:11,845: configure_logging(settings.LOGGING_CONFIG, settings.LOGGING) 2021-05-18 08:39:11,845: 2021-05-18 08:39:11,845: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 79, in getattr 2021-05-18 08:39:11,845: self._setup(name) 2021-05-18 08:39:11,845: 2021-05-18 08:39:11,845: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 66, in _setup 2021-05-18 08:39:11,845: self._wrapped = Settings(settings_module) 2021-05-18 08:39:11,845: 2021-05-18 08:39:11,845: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 157, in init 2021-05-18 08:39:11,845: mod = importlib.import_module(self.SETTINGS_MODULE) 2021-05-18 08:39:11,846: ******* 2021-05-18 08:39:11,846: If you're seeing an import error and don't know why, 2021-05-18 08:39:11,846: we have a dedicated help page to help you debug: 2021-05-18 08:39:11,846: https://help.pythonanywhere.com/pages/DebuggingImportError/ 2021-05-18 08:39:11,846: ******* 2021-05-18 08:39:13,793: Error running WSGI application 2021-05-18 08:39:13,794: ImportError: No module named 'ramasite.settings' 2021-05-18 08:39:13,794: File "/var/www/yashas24_pythonanywhere_com_wsgi.py", line 30, in <module> 2021-05-18 08:39:13,794: application = get_wsgi_application() 2021-05-18 08:39:13,794: 2021-05-18 08:39:13,794: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/core/wsgi.py", line 12, in get_wsgi_application 2021-05-18 08:39:13,794: django.setup(set_prefix=False) 2021-05-18 08:39:13,794: 2021-05-18 08:39:13,794: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/init.py", line 19, in setup 2021-05-18 08:39:13,794: configure_logging(settings.LOGGING_CONFIG, settings.LOGGING) 2021-05-18 08:39:13,795: 2021-05-18 08:39:13,795: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 79, in getattr 2021-05-18 08:39:13,795: self._setup(name) 2021-05-18 08:39:13,795: 2021-05-18 08:39:13,795: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 66, in _setup 2021-05-18 08:39:13,795: self._wrapped = Settings(settings_module) 2021-05-18 08:39:13,795: 2021-05-18 08:39:13,795: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 157, in init 2021-05-18 08:39:13,795: mod = importlib.import_module(self.SETTINGS_MODULE) 2021-05-18 08:39:13,795: ******* 2021-05-18 08:39:13,795: If you're seeing an import error and don't know why, 2021-05-18 08:39:13,795: we have a dedicated help page to help you debug: 2021-05-18 08:39:13,796: https://help.pythonanywhere.com/pages/DebuggingImportError/ 2021-05-18 08:39:13,796: ******* 2021-05-18 08:49:44,207: Error running WSGI application 2021-05-18 08:49:44,214: ImportError: No module named 'ramasite.settings' 2021-05-18 08:49:44,215: File "/var/www/yashas24_pythonanywhere_com_wsgi.py", line 30, in <module> 2021-05-18 08:49:44,215: application = get_wsgi_application() 2021-05-18 08:49:44,215: 2021-05-18 08:49:44,215: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/core/wsgi.py", line 12, in get_wsgi_application 2021-05-18 08:49:44,215: django.setup(set_prefix=False) 2021-05-18 08:49:44,215: 2021-05-18 08:49:44,215: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/init.py", line 19, in setup 2021-05-18 08:49:44,215: configure_logging(settings.LOGGING_CONFIG, settings.LOGGING) 2021-05-18 08:49:44,215: 2021-05-18 08:49:44,215: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 79, in getattr 2021-05-18 08:49:44,215: self._setup(name) 2021-05-18 08:49:44,216: 2021-05-18 08:49:44,216: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 66, in _setup 2021-05-18 08:49:44,216: self._wrapped = Settings(settings_module) 2021-05-18 08:49:44,216: 2021-05-18 08:49:44,216: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 157, in init 2021-05-18 08:49:44,216: mod = importlib.import_module(self.SETTINGS_MODULE) 2021-05-18 08:49:44,216: ******* 2021-05-18 08:49:44,216: If you're seeing an import error and don't know why, 2021-05-18 08:49:44,217: we have a dedicated help page to help you debug: 2021-05-18 08:49:44,217: https://help.pythonanywhere.com/pages/DebuggingImportError/ 2021-05-18 08:49:44,217: ******* 2021-05-18 08:49:46,100: Error running WSGI application 2021-05-18 08:49:46,101: ImportError: No module named 'ramasite.settings' 2021-05-18 08:49:46,101: File "/var/www/yashas24_pythonanywhere_com_wsgi.py", line 30, in <module> 2021-05-18 08:49:46,101: application = get_wsgi_application() 2021-05-18 08:49:46,101: 2021-05-18 08:49:46,101: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/core/wsgi.py", line 12, in get_wsgi_application 2021-05-18 08:49:46,102: django.setup(set_prefix=False) 2021-05-18 08:49:46,102: 2021-05-18 08:49:46,102: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/init.py", line 19, in setup 2021-05-18 08:49:46,102: configure_logging(settings.LOGGING_CONFIG, settings.LOGGING) 2021-05-18 08:49:46,102: 2021-05-18 08:49:46,102: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 79, in getattr 2021-05-18 08:49:46,102: self._setup(name) 2021-05-18 08:49:46,103: 2021-05-18 08:49:46,103: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 66, in _setup 2021-05-18 08:49:46,103: self._wrapped = Settings(settings_module) 2021-05-18 08:49:46,103: 2021-05-18 08:49:46,103: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 157, in init 2021-05-18 08:49:46,103: mod = importlib.import_module(self.SETTINGS_MODULE) 2021-05-18 08:49:46,103: ******* 2021-05-18 08:49:46,104: If you're seeing an import error and don't know why, 2021-05-18 08:49:46,104: we have a dedicated help page to help you debug: 2021-05-18 08:49:46,104: https://help.pythonanywhere.com/pages/DebuggingImportError/ 2021-05-18 08:49:46,104: ******* 2021-05-18 08:53:03,883: Error running WSGI application 2021-05-18 08:53:03,889: ImportError: No module named 'ramasite.settings' 2021-05-18 08:53:03,890: File "/var/www/yashas24_pythonanywhere_com_wsgi.py", line 30, in <module> 2021-05-18 08:53:03,890: application = get_wsgi_application() 2021-05-18 08:53:03,890: 2021-05-18 08:53:03,890: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/core/wsgi.py", line 12, in get_wsgi_application 2021-05-18 08:53:03,890: django.setup(set_prefix=False) 2021-05-18 08:53:03,890: 2021-05-18 08:53:03,890: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/init.py", line 19, in setup 2021-05-18 08:53:03,890: configure_logging(settings.LOGGING_CONFIG, settings.LOGGING) 2021-05-18 08:53:03,891: 2021-05-18 08:53:03,891: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 79, in getattr 2021-05-18 08:53:03,891: self._setup(name) 2021-05-18 08:53:03,891: 2021-05-18 08:53:03,891: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 66, in _setup 2021-05-18 08:53:03,891: self._wrapped = Settings(settings_module) 2021-05-18 08:53:03,891: 2021-05-18 08:53:03,891: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 157, in init 2021-05-18 08:53:03,891: mod = importlib.import_module(self.SETTINGS_MODULE) 2021-05-18 08:53:03,891: ******* 2021-05-18 08:53:03,891: If you're seeing an import error and don't know why, 2021-05-18 08:53:03,892: we have a dedicated help page to help you debug: 2021-05-18 08:53:03,892: https://help.pythonanywhere.com/pages/DebuggingImportError/ 2021-05-18 08:53:03,892: ******* 2021-05-18 08:53:06,023: Error running WSGI application 2021-05-18 08:53:06,024: ImportError: No module named 'ramasite.settings' 2021-05-18 08:53:06,024: File "/var/www/yashas24_pythonanywhere_com_wsgi.py", line 30, in <module> 2021-05-18 08:53:06,024: application = get_wsgi_application() 2021-05-18 08:53:06,024: 2021-05-18 08:53:06,024: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/core/wsgi.py", line 12, in get_wsgi_application 2021-05-18 08:53:06,024: django.setup(set_prefix=False) 2021-05-18 08:53:06,024: 2021-05-18 08:53:06,025: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/init.py", line 19, in setup 2021-05-18 08:53:06,025: configure_logging(settings.LOGGING_CONFIG, settings.LOGGING) 2021-05-18 08:53:06,025: 2021-05-18 08:53:06,025: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 79, in getattr 2021-05-18 08:53:06,025: self._setup(name) 2021-05-18 08:53:06,025: 2021-05-18 08:53:06,025: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 66, in _setup 2021-05-18 08:53:06,025: self._wrapped = Settings(settings_module) 2021-05-18 08:53:06,025: 2021-05-18 08:53:06,025: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 157, in init 2021-05-18 08:53:06,025: mod = importlib.import_module(self.SETTINGS_MODULE) 2021-05-18 08:53:06,025: ******* 2021-05-18 08:53:06,026: If you're seeing an import error and don't know why, 2021-05-18 08:53:06,026: we have a dedicated help page to help you debug: 2021-05-18 08:53:06,026: https://help.pythonanywhere.com/pages/DebuggingImportError/ 2021-05-18 08:53:06,026: ******* 2021-05-18 08:53:07,354: Error running WSGI application 2021-05-18 08:53:07,354: ImportError: No module named 'ramasite.settings' 2021-05-18 08:53:07,354: File "/var/www/yashas24_pythonanywhere_com_wsgi.py", line 30, in <module> 2021-05-18 08:53:07,354: application = get_wsgi_application() 2021-05-18 08:53:07,354: 2021-05-18 08:53:07,355: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/core/wsgi.py", line 12, in get_wsgi_application 2021-05-18 08:53:07,355: django.setup(set_prefix=False) 2021-05-18 08:53:07,355: 2021-05-18 08:53:07,355: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/init.py", line 19, in setup 2021-05-18 08:53:07,355: configure_logging(settings.LOGGING_CONFIG, settings.LOGGING) 2021-05-18 08:53:07,355: 2021-05-18 08:53:07,355: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 79, in getattr 2021-05-18 08:53:07,355: self._setup(name) 2021-05-18 08:53:07,355: 2021-05-18 08:53:07,355: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 66, in _setup 2021-05-18 08:53:07,355: self._wrapped = Settings(settings_module) 2021-05-18 08:53:07,356: 2021-05-18 08:53:07,356: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 157, in init 2021-05-18 08:53:07,356: mod = importlib.import_module(self.SETTINGS_MODULE) 2021-05-18 08:53:07,356: ******* 2021-05-18 08:53:07,356: If you're seeing an import error and don't know why, 2021-05-18 08:53:07,356: we have a dedicated help page to help you debug: 2021-05-18 08:53:07,356: https://help.pythonanywhere.com/pages/DebuggingImportError/ 2021-05-18 08:53:07,356: ******* 2021-05-18 08:53:08,563: Error running WSGI application 2021-05-18 08:53:08,564: ImportError: No module named 'ramasite.settings' 2021-05-18 08:53:08,564: File "/var/www/yashas24_pythonanywhere_com_wsgi.py", line 30, in <module> 2021-05-18 08:53:08,564: application = get_wsgi_application() 2021-05-18 08:53:08,564: 2021-05-18 08:53:08,564: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/core/wsgi.py", line 12, in get_wsgi_application 2021-05-18 08:53:08,564: django.setup(set_prefix=False) 2021-05-18 08:53:08,564: 2021-05-18 08:53:08,565: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/init.py", line 19, in setup 2021-05-18 08:53:08,565: configure_logging(settings.LOGGING_CONFIG, settings.LOGGING) 2021-05-18 08:53:08,565: 2021-05-18 08:53:08,565: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 79, in getattr 2021-05-18 08:53:08,565: self._setup(name) 2021-05-18 08:53:08,565: 2021-05-18 08:53:08,565: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 66, in _setup 2021-05-18 08:53:08,565: self._wrapped = Settings(settings_module) 2021-05-18 08:53:08,565: 2021-05-18 08:53:08,565: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 157, in init 2021-05-18 08:53:08,565: mod = importlib.import_module(self.SETTINGS_MODULE) 2021-05-18 08:53:08,566: ******* 2021-05-18 08:53:08,566: If you're seeing an import error and don't know why, 2021-05-18 08:53:08,566: we have a dedicated help page to help you debug: 2021-05-18 08:53:08,566: https://help.pythonanywhere.com/pages/DebuggingImportError/ 2021-05-18 08:53:08,566: ******* 2021-05-18 08:55:15,116: Error running WSGI application 2021-05-18 08:55:15,123: ImportError: No module named 'ramasite.settings' 2021-05-18 08:55:15,123: File "/var/www/yashas24_pythonanywhere_com_wsgi.py", line 30, in <module> 2021-05-18 08:55:15,123: application = get_wsgi_application() 2021-05-18 08:55:15,123: 2021-05-18 08:55:15,124: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/core/wsgi.py", line 12, in get_wsgi_application 2021-05-18 08:55:15,124: django.setup(set_prefix=False) 2021-05-18 08:55:15,124: 2021-05-18 08:55:15,124: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/init.py", line 19, in setup 2021-05-18 08:55:15,124: configure_logging(settings.LOGGING_CONFIG, settings.LOGGING) 2021-05-18 08:55:15,124: 2021-05-18 08:55:15,124: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 79, in getattr 2021-05-18 08:55:15,124: self._setup(name) 2021-05-18 08:55:15,124: 2021-05-18 08:55:15,124: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 66, in _setup 2021-05-18 08:55:15,124: self._wrapped = Settings(settings_module) 2021-05-18 08:55:15,125: 2021-05-18 08:55:15,125: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 157, in init 2021-05-18 08:55:15,125: mod = importlib.import_module(self.SETTINGS_MODULE) 2021-05-18 08:55:15,125: ******* 2021-05-18 08:55:15,125: If you're seeing an import error and don't know why, 2021-05-18 08:55:15,125: we have a dedicated help page to help you debug: 2021-05-18 08:55:15,125: https://help.pythonanywhere.com/pages/DebuggingImportError/ 2021-05-18 08:55:15,125: ******* 2021-05-18 08:55:16,906: Error running WSGI application 2021-05-18 08:55:16,906: ImportError: No module named 'ramasite.settings' 2021-05-18 08:55:16,906: File "/var/www/yashas24_pythonanywhere_com_wsgi.py", line 30, in <module> 2021-05-18 08:55:16,906: application = get_wsgi_application() 2021-05-18 08:55:16,906: 2021-05-18 08:55:16,907: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/core/wsgi.py", line 12, in get_wsgi_application 2021-05-18 08:55:16,907: django.setup(set_prefix=False) 2021-05-18 08:55:16,907: 2021-05-18 08:55:16,907: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/init.py", line 19, in setup 2021-05-18 08:55:16,907: configure_logging(settings.LOGGING_CONFIG, settings.LOGGING) 2021-05-18 08:55:16,907: 2021-05-18 08:55:16,907: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 79, in getattr 2021-05-18 08:55:16,907: self._setup(name) 2021-05-18 08:55:16,907: 2021-05-18 08:55:16,908: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 66, in _setup 2021-05-18 08:55:16,908: self._wrapped = Settings(settings_module) 2021-05-18 08:55:16,908: 2021-05-18 08:55:16,908: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 157, in init 2021-05-18 08:55:16,908: mod = importlib.import_module(self.SETTINGS_MODULE) 2021-05-18 08:55:16,908: ******* 2021-05-18 08:55:16,908: If you're seeing an import error and don't know why, 2021-05-18 08:55:16,908: we have a dedicated help page to help you debug: 2021-05-18 08:55:16,909: https://help.pythonanywhere.com/pages/DebuggingImportError/ 2021-05-18 08:55:16,909: ******* 2021-05-18 08:55:40,999: Error running WSGI application 2021-05-18 08:55:41,012: ImportError: No module named 'ramasite.settings' 2021-05-18 08:55:41,012: File "/var/www/yashas24_pythonanywhere_com_wsgi.py", line 30, in <module> 2021-05-18 08:55:41,012: application = get_wsgi_application() 2021-05-18 08:55:41,013: 2021-05-18 08:55:41,013: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/core/wsgi.py", line 12, in get_wsgi_application 2021-05-18 08:55:41,013: django.setup(set_prefix=False) 2021-05-18 08:55:41,013: 2021-05-18 08:55:41,013: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/init.py", line 19, in setup 2021-05-18 08:55:41,013: configure_logging(settings.LOGGING_CONFIG, settings.LOGGING) 2021-05-18 08:55:41,014: 2021-05-18 08:55:41,014: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 79, in getattr 2021-05-18 08:55:41,014: self._setup(name) 2021-05-18 08:55:41,014: 2021-05-18 08:55:41,014: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 66, in _setup 2021-05-18 08:55:41,015: self._wrapped = Settings(settings_module) 2021-05-18 08:55:41,015: 2021-05-18 08:55:41,015: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 157, in init 2021-05-18 08:55:41,015: mod = importlib.import_module(self.SETTINGS_MODULE) 2021-05-18 08:55:41,015: ******* 2021-05-18 08:55:41,015: If you're seeing an import error and don't know why, 2021-05-18 08:55:41,015: we have a dedicated help page to help you debug: 2021-05-18 08:55:41,016: https://help.pythonanywhere.com/pages/DebuggingImportError/ 2021-05-18 08:55:41,016: ******* 2021-05-18 08:55:42,936: Error running WSGI application 2021-05-18 08:55:42,936: ImportError: No module named 'ramasite.settings' 2021-05-18 08:55:42,937: File "/var/www/yashas24_pythonanywhere_com_wsgi.py", line 30, in <module> 2021-05-18 08:55:42,937: application = get_wsgi_application() 2021-05-18 08:55:42,937: 2021-05-18 08:55:42,937: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/core/wsgi.py", line 12, in get_wsgi_application 2021-05-18 08:55:42,937: django.setup(set_prefix=False) 2021-05-18 08:55:42,937: 2021-05-18 08:55:42,937: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/init.py", line 19, in setup 2021-05-18 08:55:42,937: configure_logging(settings.LOGGING_CONFIG, settings.LOGGING) 2021-05-18 08:55:42,938: 2021-05-18 08:55:42,938: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 79, in getattr 2021-05-18 08:55:42,938: self._setup(name) 2021-05-18 08:55:42,938: 2021-05-18 08:55:42,938: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 66, in _setup 2021-05-18 08:55:42,938: self._wrapped = Settings(settings_module) 2021-05-18 08:55:42,938: 2021-05-18 08:55:42,938: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 157, in init 2021-05-18 08:55:42,939: mod = importlib.import_module(self.SETTINGS_MODULE) 2021-05-18 08:55:42,939: ******* 2021-05-18 08:55:42,939: If you're seeing an import error and don't know why, 2021-05-18 08:55:42,939: we have a dedicated help page to help you debug: 2021-05-18 08:55:42,939: https://help.pythonanywhere.com/pages/DebuggingImportError/ 2021-05-18 08:55:42,939: ******* 2021-05-18 08:55:44,056: Error running WSGI application 2021-05-18 08:55:44,056: ImportError: No module named 'ramasite.settings' 2021-05-18 08:55:44,056: File "/var/www/yashas24_pythonanywhere_com_wsgi.py", line 30, in <module> 2021-05-18 08:55:44,056: application = get_wsgi_application() 2021-05-18 08:55:44,056: 2021-05-18 08:55:44,057: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/core/wsgi.py", line 12, in get_wsgi_application 2021-05-18 08:55:44,057: django.setup(set_prefix=False) 2021-05-18 08:55:44,057: 2021-05-18 08:55:44,057: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/init.py", line 19, in setup 2021-05-18 08:55:44,057: configure_logging(settings.LOGGING_CONFIG, settings.LOGGING) 2021-05-18 08:55:44,057: 2021-05-18 08:55:44,057: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 79, in getattr 2021-05-18 08:55:44,057: self._setup(name) 2021-05-18 08:55:44,057: 2021-05-18 08:55:44,057: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 66, in _setup 2021-05-18 08:55:44,057: self._wrapped = Settings(settings_module) 2021-05-18 08:55:44,057: 2021-05-18 08:55:44,058: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 157, in init 2021-05-18 08:55:44,058: mod = importlib.import_module(self.SETTINGS_MODULE) 2021-05-18 08:55:44,058: ******* 2021-05-18 08:55:44,058: If you're seeing an import error and don't know why, 2021-05-18 08:55:44,058: we have a dedicated help page to help you debug: 2021-05-18 08:55:44,058: https://help.pythonanywhere.com/pages/DebuggingImportError/ 2021-05-18 08:55:44,058: ******* 2021-05-18 08:56:20,617: Error running WSGI application 2021-05-18 08:56:20,621: ImportError: No module named 'ramasite.settings' 2021-05-18 08:56:20,621: File "/var/www/yashas24_pythonanywhere_com_wsgi.py", line 30, in <module> 2021-05-18 08:56:20,622: application = get_wsgi_application() 2021-05-18 08:56:20,622: 2021-05-18 08:56:20,622: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/core/wsgi.py", line 12, in get_wsgi_application 2021-05-18 08:56:20,622: django.setup(set_prefix=False) 2021-05-18 08:56:20,622: 2021-05-18 08:56:20,622: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/init.py", line 19, in setup 2021-05-18 08:56:20,622: configure_logging(settings.LOGGING_CONFIG, settings.LOGGING) 2021-05-18 08:56:20,623: 2021-05-18 08:56:20,623: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 79, in getattr 2021-05-18 08:56:20,623: self._setup(name) 2021-05-18 08:56:20,623: 2021-05-18 08:56:20,623: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 66, in _setup 2021-05-18 08:56:20,623: self._wrapped = Settings(settings_module) 2021-05-18 08:56:20,623: 2021-05-18 08:56:20,623: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 157, in init 2021-05-18 08:56:20,624: mod = importlib.import_module(self.SETTINGS_MODULE) 2021-05-18 08:56:20,624: ******* 2021-05-18 08:56:20,624: If you're seeing an import error and don't know why, 2021-05-18 08:56:20,624: we have a dedicated help page to help you debug: 2021-05-18 08:56:20,624: https://help.pythonanywhere.com/pages/DebuggingImportError/ 2021-05-18 08:56:20,624: ******* 2021-05-18 08:56:21,626: Error running WSGI application 2021-05-18 08:56:21,626: ImportError: No module named 'ramasite.settings' 2021-05-18 08:56:21,626: File "/var/www/yashas24_pythonanywhere_com_wsgi.py", line 30, in <module> 2021-05-18 08:56:21,626: application = get_wsgi_application() 2021-05-18 08:56:21,626: 2021-05-18 08:56:21,626: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/core/wsgi.py", line 12, in get_wsgi_application 2021-05-18 08:56:21,627: django.setup(set_prefix=False) 2021-05-18 08:56:21,627: 2021-05-18 08:56:21,627: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/init.py", line 19, in setup 2021-05-18 08:56:21,627: configure_logging(settings.LOGGING_CONFIG, settings.LOGGING) 2021-05-18 08:56:21,627: 2021-05-18 08:56:21,627: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 79, in getattr 2021-05-18 08:56:21,627: self._setup(name) 2021-05-18 08:56:21,627: 2021-05-18 08:56:21,627: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 66, in _setup 2021-05-18 08:56:21,627: self._wrapped = Settings(settings_module) 2021-05-18 08:56:21,627: 2021-05-18 08:56:21,627: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 157, in init 2021-05-18 08:56:21,627: mod = importlib.import_module(self.SETTINGS_MODULE) 2021-05-18 08:56:21,628: ******* 2021-05-18 08:56:21,628: If you're seeing an import error and don't know why, 2021-05-18 08:56:21,628: we have a dedicated help page to help you debug: 2021-05-18 08:56:21,628: https://help.pythonanywhere.com/pages/DebuggingImportError/ 2021-05-18 08:56:21,628: ******* 2021-05-18 08:59:12,653: Error running WSGI application 2021-05-18 08:59:12,660: ImportError: No module named 'ramasite.settings' 2021-05-18 08:59:12,660: File "/var/www/yashas24_pythonanywhere_com_wsgi.py", line 30, in <module> 2021-05-18 08:59:12,660: application = get_wsgi_application() 2021-05-18 08:59:12,660: 2021-05-18 08:59:12,660: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/core/wsgi.py", line 12, in get_wsgi_application 2021-05-18 08:59:12,660: django.setup(set_prefix=False) 2021-05-18 08:59:12,660: 2021-05-18 08:59:12,660: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/init.py", line 19, in setup 2021-05-18 08:59:12,660: configure_logging(settings.LOGGING_CONFIG, settings.LOGGING) 2021-05-18 08:59:12,661: 2021-05-18 08:59:12,661: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 79, in getattr 2021-05-18 08:59:12,661: self._setup(name) 2021-05-18 08:59:12,661: 2021-05-18 08:59:12,661: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 66, in _setup 2021-05-18 08:59:12,661: self._wrapped = Settings(settings_module) 2021-05-18 08:59:12,661: 2021-05-18 08:59:12,662: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 157, in init 2021-05-18 08:59:12,662: mod = importlib.import_module(self.SETTINGS_MODULE) 2021-05-18 08:59:12,662: ******* 2021-05-18 08:59:12,662: If you're seeing an import error and don't know why, 2021-05-18 08:59:12,662: we have a dedicated help page to help you debug: 2021-05-18 08:59:12,662: https://help.pythonanywhere.com/pages/DebuggingImportError/ 2021-05-18 08:59:12,662: ******* 2021-05-18 08:59:14,406: Error running WSGI application 2021-05-18 08:59:14,407: ImportError: No module named 'ramasite.settings' 2021-05-18 08:59:14,407: File "/var/www/yashas24_pythonanywhere_com_wsgi.py", line 30, in <module> 2021-05-18 08:59:14,407: application = get_wsgi_application() 2021-05-18 08:59:14,407: 2021-05-18 08:59:14,407: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/core/wsgi.py", line 12, in get_wsgi_application 2021-05-18 08:59:14,407: django.setup(set_prefix=False) 2021-05-18 08:59:14,407: 2021-05-18 08:59:14,407: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/init.py", line 19, in setup 2021-05-18 08:59:14,408: configure_logging(settings.LOGGING_CONFIG, settings.LOGGING) 2021-05-18 08:59:14,408: 2021-05-18 08:59:14,408: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 79, in getattr 2021-05-18 08:59:14,408: self._setup(name) 2021-05-18 08:59:14,408: 2021-05-18 08:59:14,408: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 66, in _setup 2021-05-18 08:59:14,408: self._wrapped = Settings(settings_module) 2021-05-18 08:59:14,408: 2021-05-18 08:59:14,408: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 157, in init 2021-05-18 08:59:14,408: mod = importlib.import_module(self.SETTINGS_MODULE) 2021-05-18 08:59:14,408: ******* 2021-05-18 08:59:14,409: If you're seeing an import error and don't know why, 2021-05-18 08:59:14,409: we have a dedicated help page to help you debug: 2021-05-18 08:59:14,409: https://help.pythonanywhere.com/pages/DebuggingImportError/ 2021-05-18 08:59:14,409: ******* 2021-05-19 07:17:00,943: Error running WSGI application 2021-05-19 07:17:00,955: ImportError: No module named 'ramasite.settings' 2021-05-19 07:17:00,955: File "/var/www/yashas24_pythonanywhere_com_wsgi.py", line 30, in <module> 2021-05-19 07:17:00,956: application = get_wsgi_application() 2021-05-19 07:17:00,956: 2021-05-19 07:17:00,956: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/core/wsgi.py", line 12, in get_wsgi_application 2021-05-19 07:17:00,956: django.setup(set_prefix=False) 2021-05-19 07:17:00,956: 2021-05-19 07:17:00,956: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/init.py", line 19, in setup 2021-05-19 07:17:00,956: configure_logging(settings.LOGGING_CONFIG, settings.LOGGING) 2021-05-19 07:17:00,956: 2021-05-19 07:17:00,956: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 79, in getattr 2021-05-19 07:17:00,957: self._setup(name) 2021-05-19 07:17:00,957: 2021-05-19 07:17:00,957: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 66, in _setup 2021-05-19 07:17:00,957: self._wrapped = Settings(settings_module) 2021-05-19 07:17:00,957: 2021-05-19 07:17:00,957: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 157, in init 2021-05-19 07:17:00,957: mod = importlib.import_module(self.SETTINGS_MODULE) 2021-05-19 07:17:00,957: ******* 2021-05-19 07:17:00,957: If you're seeing an import error and don't know why, 2021-05-19 07:17:00,957: we have a dedicated help page to help you debug: 2021-05-19 07:17:00,958: https://help.pythonanywhere.com/pages/DebuggingImportError/ 2021-05-19 07:17:00,958: ******* 2021-05-19 07:17:03,354: Error running WSGI application 2021-05-19 07:17:03,355: ImportError: No module named 'ramasite.settings' 2021-05-19 07:17:03,355: File "/var/www/yashas24_pythonanywhere_com_wsgi.py", line 30, in <module> 2021-05-19 07:17:03,355: application = get_wsgi_application() 2021-05-19 07:17:03,355: 2021-05-19 07:17:03,355: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/core/wsgi.py", line 12, in get_wsgi_application 2021-05-19 07:17:03,356: django.setup(set_prefix=False) 2021-05-19 07:17:03,356: 2021-05-19 07:17:03,356: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/init.py", line 19, in setup 2021-05-19 07:17:03,356: configure_logging(settings.LOGGING_CONFIG, settings.LOGGING) 2021-05-19 07:17:03,356: 2021-05-19 07:17:03,356: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 79, in getattr 2021-05-19 07:17:03,356: self._setup(name) 2021-05-19 07:17:03,356: 2021-05-19 07:17:03,356: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 66, in _setup 2021-05-19 07:17:03,356: self._wrapped = Settings(settings_module) 2021-05-19 07:17:03,357: 2021-05-19 07:17:03,357: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 157, in init 2021-05-19 07:17:03,357: mod = importlib.import_module(self.SETTINGS_MODULE) 2021-05-19 07:17:03,357: ******* 2021-05-19 07:17:03,357: If you're seeing an import error and don't know why, 2021-05-19 07:17:03,357: we have a dedicated help page to help you debug: 2021-05-19 07:17:03,357: https://help.pythonanywhere.com/pages/DebuggingImportError/ 2021-05-19 07:17:03,357: ******* 2021-05-19 07:17:05,085: Error running WSGI application 2021-05-19 07:17:05,087: ImportError: No module named 'ramasite.settings' 2021-05-19 07:17:05,088: File "/var/www/yashas24_pythonanywhere_com_wsgi.py", line 30, in <module> 2021-05-19 07:17:05,088: application = get_wsgi_application() 2021-05-19 07:17:05,088: 2021-05-19 07:17:05,088: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/core/wsgi.py", line 12, in get_wsgi_application 2021-05-19 07:17:05,089: django.setup(set_prefix=False) 2021-05-19 07:17:05,089: 2021-05-19 07:17:05,089: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/init.py", line 19, in setup 2021-05-19 07:17:05,089: configure_logging(settings.LOGGING_CONFIG, settings.LOGGING) 2021-05-19 07:17:05,089: 2021-05-19 07:17:05,090: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 79, in getattr 2021-05-19 07:17:05,090: self._setup(name) 2021-05-19 07:17:05,090: 2021-05-19 07:17:05,090: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 66, in _setup 2021-05-19 07:17:05,090: self._wrapped = Settings(settings_module) 2021-05-19 07:17:05,091: 2021-05-19 07:17:05,091: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 157, in init 2021-05-19 07:17:05,091: mod = importlib.import_module(self.SETTINGS_MODULE) 2021-05-19 07:17:05,091: ******* 2021-05-19 07:17:05,091: If you're seeing an import error and don't know why, 2021-05-19 07:17:05,092: we have a dedicated help page to help you debug: 2021-05-19 07:17:05,092: https://help.pythonanywhere.com/pages/DebuggingImportError/ 2021-05-19 07:17:05,092: ******* 2021-05-19 07:18:49,480: Error running WSGI application 2021-05-19 07:18:49,486: ImportError: No module named 'ramasite.settings' 2021-05-19 07:18:49,487: File "/var/www/yashas24_pythonanywhere_com_wsgi.py", line 30, in <module> 2021-05-19 07:18:49,487: application = get_wsgi_application() 2021-05-19 07:18:49,487: 2021-05-19 07:18:49,487: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/core/wsgi.py", line 12, in get_wsgi_application 2021-05-19 07:18:49,487: django.setup(set_prefix=False) 2021-05-19 07:18:49,487: 2021-05-19 07:18:49,487: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/init.py", line 19, in setup 2021-05-19 07:18:49,487: configure_logging(settings.LOGGING_CONFIG, settings.LOGGING) 2021-05-19 07:18:49,487: 2021-05-19 07:18:49,488: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 79, in getattr 2021-05-19 07:18:49,488: self._setup(name) 2021-05-19 07:18:49,488: 2021-05-19 07:18:49,488: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 66, in _setup 2021-05-19 07:18:49,488: self._wrapped = Settings(settings_module) 2021-05-19 07:18:49,488: 2021-05-19 07:18:49,488: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 157, in init 2021-05-19 07:18:49,488: mod = importlib.import_module(self.SETTINGS_MODULE) 2021-05-19 07:18:49,488: ******* 2021-05-19 07:18:49,489: If you're seeing an import error and don't know why, 2021-05-19 07:18:49,489: we have a dedicated help page to help you debug: 2021-05-19 07:18:49,489: https://help.pythonanywhere.com/pages/DebuggingImportError/ 2021-05-19 07:18:49,489: ******* 2021-05-19 07:18:51,224: Error running WSGI application 2021-05-19 07:18:51,225: ImportError: No module named 'ramasite.settings' 2021-05-19 07:18:51,225: File "/var/www/yashas24_pythonanywhere_com_wsgi.py", line 30, in <module> 2021-05-19 07:18:51,225: application = get_wsgi_application() 2021-05-19 07:18:51,225: 2021-05-19 07:18:51,225: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/core/wsgi.py", line 12, in get_wsgi_application 2021-05-19 07:18:51,225: django.setup(set_prefix=False) 2021-05-19 07:18:51,225: 2021-05-19 07:18:51,226: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/init.py", line 19, in setup 2021-05-19 07:18:51,226: configure_logging(settings.LOGGING_CONFIG, settings.LOGGING) 2021-05-19 07:18:51,226: 2021-05-19 07:18:51,226: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 79, in getattr 2021-05-19 07:18:51,226: self._setup(name) 2021-05-19 07:18:51,226: 2021-05-19 07:18:51,226: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 66, in _setup 2021-05-19 07:18:51,226: self._wrapped = Settings(settings_module) 2021-05-19 07:18:51,226: 2021-05-19 07:18:51,226: File "/home/yashas24/.virtualenvs/myenv/lib/python3.5/site-packages/django/conf/init.py", line 157, in init 2021-05-19 07:18:51,226: mod = importlib.import_module(self.SETTINGS_MODULE) 2021-05-19 07:18:51,227: ******* 2021-05-19 07:18:51,227: If you're seeing an import error and don't know why, 2021-05-19 07:18:51,227: we have a dedicated help page to help you debug: 2021-05-19 07:18:51,227: https://help.pythonanywhere.com/pages/DebuggingImportError/ 2021-05-19 07:18:51,227: *******

We have a dedicated help page to help you debug problems like that https://help.pythonanywhere.com/pages/DebuggingImportError/ It was mentioned 35 times in your log. Did you follow the instructions there?

sir went through this page https://help.pythonanywhere.com/pages/DebuggingImportError/ as per ur mail this is the changes i have made to my file /var/www/yashas24_pythonanywhere_com_wsgi.py

# +++++++++++ DJANGO +++++++++++
# To use your own django app use code like this:
import os
import sys
## assuming your Django settings file is at '/home/yashas24/mysite/mysite/settings.py'
## and your manage.py is is at '/home/yashas24/mysite/manage.py'
path = "/home/yashas24/trial-blog/ramasite/ramasite"
if path not in sys.path:
   sys.path.insert(0, path)

os.environ['DJANGO_SETTINGS_MODULE'] = "ramasite.settings"

## then:
from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()

yet it is not running plz

For path /home/yashas24/trial-blog/ramasite/ramasite and settins "ramasite.settings" your code is looking for your settings in /home/yashas24/trial-blog/ramasite/ramasite/ramasite/settings.py that doeas not exist.

Looks like you should change the path to /home/yashas24/trial-blog/ramasite

sir tq for reply i changed it yet it is not working plz do look it my files plz give me a solution sir

Did you reload your web app after making the change?