将 blob 对象下载为字符串而不是将其保存为文件,然后读取它
Download blob object as a string instead of saving it as a file and then read it
假设我在 Google 有一个存储空间,其中包含一个 blob_file
{"name":"my name",
"number:"my number"
}
有没有办法下载此文件并return下载为纯字符串而不是将其另存为文件,例如
import json
from google.cloud import storage
downloaded_json = storage.blob.some_function(bucket_name="mybucket",blob_file="blob_file") #Gets the context of "blob_file" as a string
print(downloaded_json)
#'{"name":"my name",
#"number:"my number"
#}'
name_dict = json.loads("downloaded_json") #Convert it to a dictionary such that it can be used
print(name_dict["name"])
#"my name"
我知道我可以下载文件、读取文件、删除文件 - 但这是为了避免这种情况,您似乎可以在
中执行此操作
您可以使用 Google 云存储客户端库 here
中记录的 download_as_text
函数
假设我在 Google 有一个存储空间,其中包含一个 blob_file
{"name":"my name",
"number:"my number"
}
有没有办法下载此文件并return下载为纯字符串而不是将其另存为文件,例如
import json
from google.cloud import storage
downloaded_json = storage.blob.some_function(bucket_name="mybucket",blob_file="blob_file") #Gets the context of "blob_file" as a string
print(downloaded_json)
#'{"name":"my name",
#"number:"my number"
#}'
name_dict = json.loads("downloaded_json") #Convert it to a dictionary such that it can be used
print(name_dict["name"])
#"my name"
我知道我可以下载文件、读取文件、删除文件 - 但这是为了避免这种情况,您似乎可以在
您可以使用 Google 云存储客户端库 here
中记录的download_as_text
函数