I am developing a Python bottle web API. It was working fine on localhost/8080 but after shifting it to Pythonanywhere, it's not working and giving this error. How to resolve it?
2014-09-21 12:58:33,954 :/usr/lib/python2.7/threading.py:1158: RuntimeWarning: tp_compare didn't return -1 or -2 for exception
2014-09-21 12:58:33,955 : return _active[_get_ident()]
2014-09-21 12:58:33,955 :Traceback (most recent call last):
2014-09-21 12:58:33,955 : File "/bin/user_wsgi_wrapper.py", line 123, in __call__
2014-09-21 12:58:33,955 : self.error_log_file.logger.exception("Error running WSGI application")
2014-09-21 12:58:33,955 : File "/usr/lib/python2.7/logging/__init__.py", line 1183, in exception
2014-09-21 12:58:33,955 : self.error(msg, *args, **kwargs)
2014-09-21 12:58:33,955 : File "/usr/lib/python2.7/logging/__init__.py", line 1176, in error
2014-09-21 12:58:33,956 : self._log(ERROR, msg, args, **kwargs)
2014-09-21 12:58:33,956 : File "/usr/lib/python2.7/logging/__init__.py", line 1268, in _log
2014-09-21 12:58:33,956 : record = self.makeRecord(self.name, level, fn, lno, msg, args, exc_info, func, extra)
2014-09-21 12:58:33,956 : File "/usr/lib/python2.7/logging/__init__.py", line 1242, in makeRecord
2014-09-21 12:58:33,956 : rv = LogRecord(name, level, fn, lno, msg, args, exc_info, func)
2014-09-21 12:58:33,956 : File "/usr/lib/python2.7/logging/__init__.py", line 284, in __init__
2014-09-21 12:58:33,956 : self.threadName = threading.current_thread().name
2014-09-21 12:58:33,957 : File "/usr/lib/python2.7/threading.py", line 1158, in currentThread
2014-09-21 12:58:33,957 : return _active[_get_ident()]
2014-09-21 12:58:33,957 : File "/bin/user_wsgi_wrapper.py", line 115, in __call__
2014-09-21 12:58:33,957 : app_iterator = self.app(environ, start_response)
2014-09-21 12:58:33,957 : File "/bin/user_wsgi_wrapper.py", line 129, in import_error_application
2014-09-21 12:58:33,957 : raise e
2014-09-21 12:58:33,957 :OSError: [Errno 2] No such file or directory