繁体   English   中英

解码Google云端存储python API返回的protobuf文件

[英]decode protobuf file returned by google cloud storage python api

我正在尝试通过Google Cloud Storage及其针对python的客户端API库googleapiclient从Google Play自动下载收益报告。

我在Windows 10上使用python 3.6.5(Anaconda发行版):

client_email = '...@...iam.gserviceaccount.com'
json_file_path = 'C:\\Users\\...'
cloud_storage_bucket = 'pubsite_prod_rev_...'
report_to_download = 'sales/salesreport_201806.zip'

json_obj = json.loads(open(json_file).read())
_private_key = json_obj['private_key']
_private_key_id = json_obj['private_key_id']
_token_uri = json_obj['token_uri']
_client_id = json_obj['client_id']


credentials = ServiceAccountCredentials(
    service_account_email = client_email,
    private_key_id = _private_key_id,
    token_uri = _token_uri,
    client_id = _client_id,
    scopes = 'https://www.googleapis.com/auth/devstorage.read_only',
    signer = crypt.Signer.from_string(_private_key), )

storage = build('storage', 'v1', http=credentials.authorize(Http()))

request = storage.objects().get_media(bucket=cloud_storage_bucket,
                                      object=report_to_download)
response = request.execute()

但是,我得到了一些协议缓冲区文件作为response ,其开始如下: b'PK\\x03\\x04\\x14\\x00\\x08\\x08\\x08\\x00\\xdb\\xa3\\xe4L\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00PlayApps_201806.csv'

我无法弄清楚应该使用哪种解码器来获得更好的格式response (从Google Play手动下载时,报告是.zip存档中的.csv文件)。 有什么建议么?

这不是protobuf。 这是一个zip文件。 线索

  • 文件名是'sales / salesreport_201806.zip'
  • 前几个字节包含“ PK”,(如PKZip所示

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM