When using a third-party library such as a sample project of Google app engine, it is supposed to be written like this.
appengine_config.py
from google.appengine.ext import vendor
vendor.add('lib')
I see, when I write it. There are times when this happens.
ImportError: cannot import name vendo
I thought it was a problem with the path, but it really isn't. Apparently, the version of the SDK at hand seems to be old, and it seems that it was around SDK 1.9.15 that I started writing this way. I wanted that to be easier to understand.
Recommended Posts