How GAE emulator limits list of available Python modules?
Posted
by Konstantin
on Stack Overflow
See other posts from Stack Overflow
or by Konstantin
Published on 2010-04-23T09:26:39Z
Indexed on
2010/04/23
9:53 UTC
Read the original article
Hit count: 313
I installed Python Mock module using PIP.
When I try to import mock
running under 'dev_appserver', GAE says that it can't find module 'mock'.
import mock
works perfectly in Python interpreter.
I understand that dev_appserver
behaves absolutely correctly because I can't install modules with PIP on GAE servers.
My question is how technically dev_appserver
filters list of modules that can be loaded?
© Stack Overflow or respective owner