python - How to use a library that imports memcache in App Engine -


i want use library (memorised) uses memcache this: import memcache

now on app engine, memcache must imported this: from google.appengine.api import memcache

so error when running dev_appserver.py: importerror: no module named memcache

can use library without modifying it?

the short answer is: if can module work on local instance using dev_appserver.py, because google controls server environment, can use supported modules when upload code hosting services. see here.

the long answer that, in order import memcache, need memcache package installed. if want try use memcache module google provides instead, can change from google.appengine.api import memcache, google's memcache may have substantial , significant differences standard python memcache package memorised uses, , may throw errors or not work @ all. furthermore, if memorised work, won't able use on google's servers, not supported third-party library (see above).


Comments

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -