我想从 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,但我能找到的所有例子都是相反的
任何想法?