Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ImportError: No module named auto #12

Open
ashwini-appstute opened this issue Aug 24, 2019 · 4 comments
Open

ImportError: No module named auto #12

ashwini-appstute opened this issue Aug 24, 2019 · 4 comments

Comments

@ashwini-appstute
Copy link

I have followed the mentioned steps and setup the firestore, stripe and sendgrid environment as suggested. It is giving me the following error when I am trying to run it -

ERROR 2019-08-24 12:38:37,905 wsgi.py:263]
Traceback (most recent call last):
File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/runtime/wsgi.py", line 240, in Handle
handler = _config_handle.add_wsgi_middleware(self._LoadHandler())
File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/runtime/wsgi.py", line 299, in _LoadHandler
handler, path, err = LoadObject(self._handler)
File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/runtime/wsgi.py", line 85, in LoadObject
obj = import(path[0])
ImportError: No module named auto
INFO 2019-08-24 12:38:37,930 module.py:788] default: "GET / HTTP/1.1" 500 -

@mbriceno
Copy link

@ashwini-appstute any solution for this?

@s3657051
Copy link

s3657051 commented May 4, 2020

I am getting the same error...

@mbriceno
Copy link

mbriceno commented May 4, 2020

Well, after read google app engine docs and examples, i solved my error like that:

For django, in app.yaml change line:
`handlers:

  • url: /.*
    script: auto`

with:
`handlers:

  • url: /.*
    script: your-app.wsgi.application`

Replace script by string in settings.py, environment variable WSGI_APPLICATION

@s3657051
Copy link

s3657051 commented May 4, 2020

Thank you! It actually worked

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants