1

我想从 python 读取一个 INI 文件,我想出了以下脚本:

import webapp2
import urllib
import ConfigParser

class MainPage(webapp2.RequestHandler):
  def get(self):
    getstreet = self.request.get('street')
    getlocation = self.request.get('location')
    self.response.headers['Content-Type'] = 'text/plain'
    map = ConfigParser.RawConfigParser()
    map.read('Map.ini')
    coords = map.get(getlocation, getstreet)
    self.response.out.write(coords)

app = webapp2.WSGIApplication([('/map', MainPage)],
                              debug=True)

从外面我只需要阅读:
xxx.appspot.com/map?location=mylocation&street=mystreet
我仔细检查了 INI 文件是否已上传并可用:
xxx.appspot.com/Map.ini
它在本地工作得很好,但我部署时出错。
我见过提到 url fetch,但我能找到的所有例子都是相反的
任何想法?

4

1 回答 1

0

如果您的文件可通过 URL 获得,则几乎可以肯定它被标记为静态。AppEngine 的限制之一是无法从代码中读取静态文件。您应该能够通过删除静态声明来修复它。

使用 Python 读取 App Engine 上的文件?

于 2012-07-05T09:14:54.890 回答