Access to module denied from within GAE dev server
- by Tomas Kohl
I am developing an app for GAE.
Having installed the "feedparser" module with setuptools, I tried importing it (with "import feedparser") statement. However, the module does not load and when I look at the dev_appserver.py debug log on screen, I see the following:
Access to module file denied: /usr/local/lib/python2.6/dist-packages/feedparser-4.1-py2.6.egg/feedparser.py
So GAE dev server cannot access the module but I can't figure out why. The path is correct and the file is accessible.
I am fairly new to Python/Django/GAE - what am I missing?