[GAE] memcache Undefined variable error - python
from google.appengine.api import memcache
def get_from_memcache():
value = memcache.get("key")
Undefined variable from import: get
에러 발생
Window → Preference 선택
PyDev → Interpreters → Python Interpreter 선택
Libraries → New Folder → Google App Engine 폴더 선택
Forced Builtins → New 선택, google.appengine.api.memcache
를 입력하고 OK
이후 이클립스를 종료하고 다시 실행한다.
출처
- Fixing PyDev memcache unresolved import
- http://stackoverflow.com/questions/1469860/eclipsepydevgae-memcache-error/4262347#4262347
What fixed it for me was going to Preferences -> PyDev -> Interpreter – Python -> Libraries, clicking New Folder button and adding the google_appengine folder (the one where you have dev_appserver.py).
After clicking OK and closing Preferences I had to close the Eclipse and open it again.
PS: I had to leave the force build entry from Stack Overflow tip in my settings as well. When I removed it the error appeared again.
'Programming > Google' 카테고리의 다른 글
Pycharm 에서 Google App Engine 프로젝트 생성시 에러 (0) | 2017.03.30 |
---|---|
구글 스프레드시트 조건별 서식 적용하기 (다른 시트를 참조할 수 없습니다.) (0) | 2016.09.23 |
[GAE] Static 파일 설정 (0) | 2015.12.02 |
[GAE] 파일 업로드 (0) | 2015.11.30 |
[GAE] 포트 사용중인 프로세스 종료 (0) | 2015.11.30 |
댓글