Access to module denied from within GAE dev server
Posted
by Tomas Kohl
on Stack Overflow
See other posts from Stack Overflow
or by Tomas Kohl
Published on 2010-05-03T07:53:29Z
Indexed on
2010/05/03
7:58 UTC
Read the original article
Hit count: 341
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?
© Stack Overflow or respective owner