次のコードでdjangoを実行しているサーバーから融合テーブルを作成しようとしていますが、サーバーエラー500が発生して失敗します。Pythonのサービスアカウントを使用した融合テーブルの作成
scope = ['https://www.googleapis.com/auth/fusiontables']
credentials = ServiceAccountCredentials.from_json_keyfile_name(EE_CREDENTIALS, scope)
http_auth = credentials.authorize(Http())
def create_table(name, description, columns, data=None):
ft_service = build('fusiontables', 'v2', http_auth)
body = dict(name=name, description=description, columns=columns)
table = ft_service.table()
result = table.insert(body=body).execute(num_retries=3) # failing here
if data is not None:
if not os.path.exists(TEMP_DIRPATH):
os.makedirs(TEMP_DIRPATH)
keys = data[0].keys()
if len(columns) != len(keys):
raise ValueError("mismatch in number of columns")
filename = TEMP_DIRPATH + str(result.tableId) + ".csv"
with open(filename, 'wb') as upload_file:
dict_writer = csv.DictWriter(upload_file, keys)
dict_writer.writeheader()
dict_writer.writerows(data)
ft_service.importRows(tableId=result.tableId, media_body=filename, startLine=1, isStrict=True,
encoding="auto-detect", delimiter=",").execute(num_retries=3)
return result.tableId
def test_create_table(filename):
data = []
columns = []
with open(filename, 'rb') as csvfile:
reader = csv.reader(csvfile)
for row_index, row in enumerate(reader):
if row_index == 0:
header = list(row)
for col_index, col in enumerate(row):
if col_index == 24 or col_index == 25:
columns.append({"name": header[col_index], "type": "LOCATION"})
else:
columns.append({"name": header[col_index], "type": "STRING"})
else:
# 24 and 25 are latitude and longitude.
if caught(float, row[24]) or caught(float, row[25]):
continue
properties = {}
for col_index, col in enumerate(row):
# 21 is ch4
if col_index == 21:
properties[header[col_index]] = 0 if caught(float, col) else float(col)
else:
properties[header[col_index]] = col
data.append(properties)
table_id = create_table('chino-20150110', 'locality = chino and date = 20150110', columns, None)
print "created fusion table id is " + str(table_id)
test_create_table('C:/Users/JohnsonCharles/Desktop/chino-20150110.csv')
そして、私が取得エラーはこれです:私もそれを使用するGoogleドライブを知っているんどのように思ったんだけど
googleapiclient.errors.HttpError: <HttpError 500 when requesting https://www.googleapis.com/fusiontables/v2/tables?alt=json returned "Backend Error">
。私はバックエンドからフュージョンテーブルを作成しているので、フュージョンテーブルの作成に特定のGoogleドライブを使用するにはどうすればいいですか?
ところで、私はフュージョンテーブルがGoogleドライブで占有するスペースに関心があり、特定のドライブでそれを作成することについて私の質問の背後にある理由でした。しかし、私のGoogleドライブのフュージョンテーブルの詳細から、彼らはこの執筆時点で無料です。 –