Currently I have firebase account setup. I wish to add item to firestore of this project, via python asyncio.
As I understand it, the package: python-firestore, does support async via AsyncClient.
The python package firebase_admin, currently doos not support async. So I am wondering if it is possible to use it without 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=???)