使用 Google App Engine,我正在尝试从包含一个 csv 文件的 URL 中获取一个 gzip 文件。
最终我想在我的网页上输出 csv 文件的内容。
我目前有以下代码:
#!/usr/bin/env python
import webapp2
from google.appengine.api import urlfetch
class Test(webapp2.RequestHandler):
def get(self):
self.response.headers['Content-Type'] = 'text/plain'
url = *this_is_my_url*
test = urlfetch.fetch(url, deadline=25)
self.response.out.write(test.content)
app = webapp2.WSGIApplication([
('/test', Test)
], debug=True)
它不是将文件的内容打印到屏幕上,而是要求我在本地下载它们。如何停止此本地下载并直接打印到屏幕/网页?