2

我想使用 GAE 创建一个进程,通过它,给定一个 url,一个文件被下载并作为 blob 存储在 blobstore 中。完成此操作后,我想将此 blob 作为 POST 数据传递到第二个 url。但是,要使第二部分工作,我需要能够将 blob 作为文件实例打开。

我已经想出了如何做第一部分

from __future__ import with_statement
from google.appengine.api import files

imagefile = urllib2.urlopen('fileurl')
# Create the file
file_name = files.blobstore.create(mime_type=imagefile.headers['Content-Type'])
# Open the file and write to it
with files.open(file_name, 'ab') as f:
    f.write(imagefile.read())
# Finalize the file. Do this before attempting to read it.
files.finalize(file_name)
# Get the file's blob key
blob_key = files.blobstore.get_blob_key(file_name)

但我不知道如何做第二部分。到目前为止我已经尝试过

  1. ffile = files.open(files.blobstore.get_file_name(blob_key), 'r')

  2. from google.appengine.ext import blobstore

    ffile = blobstore.BlobReader(blob_key)
    
  3. from google.appengine.ext import blobstore

    ffile = blobstore.BlobInfo.open(blobstore.BlobInfo(blob_key))
    

所有这些都Falseisinstance(ffile, file).

任何帮助表示赞赏。

4

2 回答 2

2

ffile = blobstore.BlobReader(blob_key)作品。但是,返回的对象只有一个类似文件的接口;它不扩展文件类。因此,isinstance 测试不起作用。尝试类似的东西if ffile and "read" in dir( ffile )

于 2013-01-09T10:43:33.987 回答
1

从 blobstore 读取 file_data :

blob_key = .....                                        # is what you have
file_name = blobstore.BlobInfo.get(blob_key).filename   # the name of the file (image) to send 
blob_reader = blobstore.BlobReader(blob_key)
file_data = blob_reader.read()                          # and the file data with the image

但是您也可以使用 blob_key 发送一个 url 并提供该 url。对于图像,您不必自己提供图像,因为您可以发布 get_serving_url,利用具有动态缩放功能的 Google 高性能图像服务 API。以这种方式提供图像也非常便宜。

以下是此类 url 的示例:

https://lh6.ggpht.com/lOghqU2JrYk8M-Aoio8WjMM6mstgZcTP0VzJk79HteVLhnwZy0kqbgVGQZYP8YsoqVNzsu0EBysX16qMJe7H2BsOAr4j=s70

于 2013-01-09T14:23:15.527 回答