我的项目结构看起来像
flask-appengine-template/
docs/
licenses/
src/
application/
static/
templates/
models.py
settings.py
urls.py
views.py
english.txt
libs/
bs4/
app.yaml
src.py
在我的 中views.py
,我有一个读取文件的函数english.txt
for words in open('english.txt', 'r').readlines():
stopwords.append(words.strip())
当我运行它时local environment
,我在日志中看到错误为
(<type 'exceptions.IOError'>, IOError(13, 'file not accessible'), <traceback object at 0x10c457560>)
如何在 Google App Engine 中读取此文件?