我试图在Google函数中访问和修改从中提取的换行符JSON文件中的数据。结果总是显示为数字,尽管这不是JSON中的数据。
我看到blob对象的download_as_string()返回Bytes (string),但是在我看到的任何引用中,每个人都能够很好地访问他们的数据。
我在云函数中这样做,但我认为我的问题适用于任何GCP工具。
下面的示例只需加载换行符JSON数据,将其添加到列表中,选择前两个字典条目,转换回换行符JSON,并在GCS上输出到JSON文件。示例、代码和下面列出的错误输出。
示例换行符JSON输入
{"Website": "Google", "URL": "Google.com", "ID": 1}
{"Website": "Bing", "URL": "Bing.com", "ID": 2}
{"Website": "Yahoo", "URL": "Yahoo.com", "ID": 3}
{"Website": "Yandex", "URL": "Yandex.com", "ID": 4}云函数中的代码
import requests
import json
import csv
from datetime import datetime, timedelta
import sys
from collections import OrderedDict
import os
import random
from google.cloud import bigquery
from google.cloud import storage
def importData(request, execution):
# Read the data from Google Cloud Storage
read_storage_client = storage.Client()
# Set buckets and filenames
bucket_name = "sample_bucket"
filename = 'sample_json_output.json'
# get bucket with name
bucket = read_storage_client.get_bucket('sample_bucket')
# get bucket data as blob
blob = bucket.get_blob('sample_json.json')
# download as string
json_data = blob.download_as_string()
# create list
website_list = []
for u,y in enumerate(json_data):
website_list.append(y)
# select first two
website_list = website_list[0:2]
# Create new-line JSON
results_ready = '\n'.join(json.dumps(item) for item in website_list)
# Write the data to Google Cloud Storage
write_storage_client = storage.Client()
write_storage_client.get_bucket(bucket_name) \
.blob(filename) \
.upload_from_string(results_ready)当前输出在sample_json_output.json文件中
123
34预期输出
{"Website": "Google", "URL": "Google.com", "ID": 1}
{"Website": "Bing", "URL": "Bing.com", "ID": 2}JSON 6/6:如果我直接从download_to_string blob写入一个文件,那么它将完美地写入JSON文件,但我需要先访问.的内容。
import requests
import json
import csv
from datetime import datetime, timedelta
import sys
from collections import OrderedDict
import os
import random
from google.cloud import bigquery
from google.cloud import storage
def importData(request, execution):
# Read the data from Google Cloud Storage
read_storage_client = storage.Client()
# Set buckets and filenames
bucket_name = "sample_bucket"
filename = 'sample_json_output.json'
# get bucket with name
bucket = read_storage_client.get_bucket('sample_bucket')
# get bucket data as blob
blob = bucket.get_blob('sample_json.json')
# convert to string
json_data = blob.download_as_string()
# Write the data to Google Cloud Storage
write_storage_client = storage.Client()
write_storage_client.get_bucket(bucket_name) \
.blob(filename) \
.upload_from_string(json_data)更新6/6输出
{"Website": "Google", "URL": "Google.com", "ID": 1}
{"Website": "Bing", "URL": "Bing.com", "ID": 2}
{"Website": "Yahoo", "URL": "Yahoo.com", "ID": 3}
{"Website": "Yandex", "URL": "Yandex.com", "ID": 4}发布于 2019-06-10 07:34:44
我能够在下面的代码中使用与自己类似的方法获得您想要的结果,并为新行JSON使用ndjson库。
import requests
import json
import ndjson
import csv
from datetime import datetime, timedelta
import sys
from collections import OrderedDict
import os
import random
from google.cloud import bigquery
from google.cloud import storage
def importData(request, execution):
# Read the data from Google Cloud Storage
read_storage_client = storage.Client()
# Set buckets and filenames
bucket_name = "bucket-name"
filename = "sample_json_output.json"
# get bucket with name
bucket = read_storage_client.get_bucket(bucket_name)
# get bucket data as blob
blob = bucket.get_blob("sample_json.json")
# convert to string
json_data_string = blob.download_as_string()
json_data = ndjson.loads(json_data_string)
list = []
for item in json_data:
list.append(item)
list1 = list[0:2]
result = ""
for item in list1:
result = result + str(item) + "\n"
# Write the data to Google Cloud Storage
write_storage_client = storage.Client()
write_storage_client.get_bucket(bucket_name) \
.blob(filename) \
.upload_from_string(result)发布于 2019-06-07 17:07:31
当您在json_data中读取blob时,您将得到一个字节对象,当您迭代它时,您将得到每个字符的数字表示。下面是一个示例,该示例从字节对象创建了一个dicts列表。
json_data
b'{"Website": "Google", "URL": "Google.com", "ID": 1}\n{"Website": "Bing", "URL": "Bing.com", "ID": 2}\n{"Website": "Yahoo", "URL": "Yahoo.com", "ID": 3}\n{"Website": "Yandex", "URL": "Yandex.com", "ID": 4}\n'
type(json_data)
bytes
website_list = [json.loads(row.decode('utf-8')) for row in json_data.split(b'\n') if row]
website_list
[{'Website': 'Google', 'URL': 'Google.com', 'ID': 1},
{'Website': 'Bing', 'URL': 'Bing.com', 'ID': 2},
{'Website': 'Yahoo', 'URL': 'Yahoo.com', 'ID': 3},
{'Website': 'Yandex', 'URL': 'Yandex.com', 'ID': 4}]发布于 2022-07-20 17:21:23
如果要替换
json_data = blob.download_as_string()通过
json_data = blob.download_as_text()https://stackoverflow.com/questions/56463125
复制相似问题