gpt4 book ai didi

python - 使用 python-api-client 的异步 insertAll 请求

转载 作者:太空宇宙 更新时间:2023-11-03 11:51:13 25 4
gpt4 key购买 nike

我正在使用以下代码将数据从 App Engine 流式传输到 BigQuery。目前请求正在阻塞。有没有办法只使用 apiclient 使这些请求异步(不使用 deferred 库或类似库)?

credentials = AppAssertionCredentials(scope = 'https://www.googleapis.com/auth/bigquery')
http = credentials.authorize(httplib2.Http())
bigquery = build('bigquery', 'v2', http = http)
bigquery.tabledata().insertAll(
projectId = PROJECT_NUMBER,
datasetId = DATASET_ID,
tableId = TABLE_ID,
body = body).execute()

最佳答案

Python api 客户端(来自 https://developers.google.com/api-client-library/python/ )是一个同步客户端。您将必须在客户端之外管理异步请求。

关于python - 使用 python-api-client 的异步 insertAll 请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27106233/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com