- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
目前我有 Firebase 帐户设置。我希望通过 python asyncio 将项目添加到该项目的 firestore。
据我了解,包:python-firestore
确实通过 AsyncClient
支持异步。
python 包 firebase_admin
,目前不支持异步。所以我想知道是否可以在没有 firebase_admin
的情况下使用它。
firebase_admin:
import firebase_admin
from firebase_admin import credentials
cred = credentials.Certificate("path/to/serviceAccountKey.json")
firebase_admin.initialize_app(cred)
python-firestore:
from google.cloud.firestore import AsyncClient
client = AsyncClient(credentials=???)
最佳答案
在深入挖掘源码后,我自己找到了答案。
from google.cloud.firestore import AsyncClient
from google.oauth2 import service_account
with open("path/to/serviceAccountKey.json") as json_file:
json_data = json.load(json_file)
firestore_client = AsyncClient(
project=json_data['project_id'],
credentials=service_account.Credentials.from_service_account_info(json_data),
)
关于python - 使用 python-firestore AsyncClient 和 firebase,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67737730/
我一直在寻找异步 java http 客户端。 我遇到了 Apache asyncClient并经历了以下examples . 因此在示例中,我们注册了一个回调对象,并在请求的响应返回时调用 comp
我正在使用 Aerospike AsyncClient 和 Aerospike UDF 模块使用多线程在 Aerospike 2 节点集群中插入 1000 万条记录。我遵循的步骤是: 创建了 10 个
我需要为用于从 API 获取数据的函数编写测试用例。在那里我使用 httpx.AsyncClient() 作为上下文管理器。但我不明白如何为该功能编写测试用例。 async def make_drop
我以为我禁用了在 Http 客户端中检查证书,但不断收到 SSLPeerUnverifiedException。 这是我的客户: import java.io.ByteArrayOutputStrea
我打算向 SNS 发送消息,然后我发现了一个 AmazonSNSClient。我试过了。 AWSCredentials credentials = new DefaultAWSCredentialsP
目前我有 Firebase 帐户设置。我希望通过 python asyncio 将项目添加到该项目的 firestore。 据我了解,包:python-firestore 确实通过 AsyncClie
目前我有 Firebase 帐户设置。我希望通过 python asyncio 将项目添加到该项目的 firestore。 据我了解,包:python-firestore 确实通过 AsyncClie
我是一名优秀的程序员,十分优秀!