2017/05/15

[Python][Google App Engine]Google Cloud Storageにファイルを読み込む

昨日のエントリーではGoogle App EngineからGoogle Cloud Storageにファイルをアップロードする方法について書いたので、そのファイルをreadする方法を書きたいと思います。

import os
import cloudstorage
from google.appengine.api import app_identity

bucket_name = os.environ.get(DEFAULT_BUCKET_NAME,app_identity.get_default_gcs_bucket_name())
filename = '/' + bucket_name + '/' + "hoge"
gcs_file = cloudstorage.open(filename)
contents = gcs_file.read()
gcs_file.close()
確かにreadできたー。

0 コメント:

コメントを投稿